*O código do componente Link: *
import NextLink from 'next/link';
import LinkEstilizado from '../LinkEstilizado';
interface Props {
  children?: any,
  href?: string,
}
const Link = ({ children, href, ...props }) => {
  return (
    <NextLink href={href} passHref>
      <LinkEstilizado {...props}>{ children }</LinkEstilizado>
    </NextLink>
  );
}
export default Link;O erro que da quando digito ''yarn build && yarn start" no terminal é:
Type error: Binding element 'children' implicitly has an 'any' type. 
            