/** * SEO component that queries for data with * Gatsby's useStaticQuery React hook * * See: https://www.gatsbyjs.org/docs/use-static-query/ */ import React from 'react'; interface SEOProps { description?: string; lang?: string; meta?: any[]; title?: string; titleSuffix?: string; } declare const SEO: React.FC; export default SEO;