Use ReactNode instead of any for typing children in your component. as it covers everything React can render.
Follow this code as an example:
const Section = ({childeres} : {children:ReactNode}): ReactElement => {
return <div> {children}</div>;
};