import { ScrollbarProps } from '../Scrollbar'; export interface LayoutMainProps { /** The content rendered inside the main area. */ children?: React.ReactNode; /** * Additional class name applied to the main element. */ className?: string; /** * Props passed to the internal `Scrollbar` component. If not provided, the main area will still be scrollable but without the custom scrollbar styling and behavior. */ scrollbarProps?: Omit; } export declare function LayoutMain(props: LayoutMainProps): import("react/jsx-runtime").JSX.Element; export declare namespace LayoutMain { var displayName: string; }