/// interface SEOProps { description?: string; lang?: string; title: string; imageUrl?: string; location?: { pathname: string; }; siteMetadata: { title: string; description: string; author: string; siteUrl: string; }; } declare function SEO({ location, description, lang, imageUrl, title, siteMetadata, }: SEOProps): JSX.Element; export default SEO;