import type { PageContainerProp, PageInsetProp } from "../../props/components/layout.prop.js"; export type { PageContainerProp, PageContainerProp as PageContainerProps, PageContainerExtraProp, } from "../../props/components/layout.prop.js"; export type { BreadcrumbItemProp, BreadcrumbItemProp as BreadcrumbItem, } from "../../props/vocabulary/navigation.prop.js"; export declare function PageContainerInset({ className, children, ...props }: PageInsetProp): import("react").JSX.Element; declare function PageContainerRoot({ title, subtitle, status, extra, toolbar, footer, toolbarPad, footerPad, breadcrumb, breadcrumbLabel, breadcrumbAriaLabel, linkComponent: LinkComponent, headerLoading, density, variant, preset, headerLayout, headerScale, measure, stickyFooter, footerReveal, fill, children, className, }: PageContainerProp): import("react").JSX.Element; export declare const PageContainer: typeof PageContainerRoot & { Inset: typeof PageContainerInset; };