/// <reference types="react" />
import { PageBreadcrumb } from './Breadcrumb';
import { PageContent } from './Content';
import { PageFooter } from './Footer';
import { PageHeader } from './Header';
import { PageTitle } from './Title';
export type { PageBreadcrumbProps } from './Breadcrumb';
export type { PageContentProps } from './Content';
export type { PageHeaderProps } from './Header';
export type { PageProps } from './Page';
export type { PageTitleProps } from './Title';
export declare const Page: import("react").FC<import("./Page").PageProps> & {
    Breadcrumb: typeof PageBreadcrumb;
    Title: typeof PageTitle;
    Header: typeof PageHeader;
    Content: typeof PageContent;
    Footer: typeof PageFooter;
};
