import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface LayoutHostProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** The content rendered inside the layout host. */ children?: React.ReactNode; } export declare const LayoutHost: import("react").ForwardRefExoticComponent>;