import type React from 'react'; import type { Config } from '../../types/index.js'; export interface RootLayoutProps { children: React.ReactNode; config: Config; importMap?: Record; serverFunction?: (name: string, args: unknown) => Promise; } export declare function RootLayout({ children, serverFunction }: RootLayoutProps): React.JSX.Element; //# sourceMappingURL=layout.d.ts.map