interface LayoutProps { title: string; href: string; children: JSX.Element | JSX.Element[]; scripts: string; theme: 'light' | 'dark'; robots: boolean; } declare const Layout: ({ title, href, children, scripts, theme, robots }: LayoutProps) => JSX.Element; export default Layout;