import type { HomeLayoutProps } from '@rspress/core/theme'; import { type DocLayoutProps, type NavProps } from '@rspress/core/theme'; import React from 'react'; export type LayoutProps = { top?: React.ReactNode; bottom?: React.ReactNode; HomeLayout?: React.FC; NotFoundLayout?: React.FC; beforeNav?: React.ReactNode; afterNav?: React.ReactNode; } & Omit & HomeLayoutProps & NavProps; export declare function Layout(props: LayoutProps): import("react/jsx-runtime").JSX.Element;