export declare function DocumentLayout({ title, breadcrumbs, children, footer, toolbar, }: {
    title: string;
    breadcrumbs?: string[] | Array<{
        label: string;
        href?: string;
    }>;
    children: JSX.Element;
    footer?: JSX.Element | null;
    toolbar?: JSX.Element | null;
}): JSX.Element;
