import { ComponentPropsWithoutRef, type ReactNode } from "react"; export interface LayoutProps extends ComponentPropsWithoutRef { /** Main content of an application */ children: ReactNode; /** Full screen mode without header component */ headless?: boolean; } declare const Layout: { ({ children, headless, ...restProps }: LayoutProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Layout;