/// export interface LayoutProps { title?: string; subtitle?: string; } declare const Layout: ({ title, subtitle, children, }: LayoutProps & { children: any; }) => JSX.Element; export default Layout;