/// export interface LayoutProps { children: JSX.Element | JSX.Element[]; } declare const Layout: ({ children }: LayoutProps) => JSX.Element; export default Layout;