import { FC, PropsWithChildren, ReactNode } from "react"; export declare const PageHeadline: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLHeadingElement>, never>>; export declare const AltPage: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit> | (import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit> & Omit>); export type BreadcrumbsProps = { items: { key: string; href: string; title: ReactNode; onClick?: () => void; }[]; }; export declare const Breadcrumbs: FC; type MenuItem = { isDelete?: boolean; itemText: ReactNode; onClick: () => unknown; }; type PageProps = { title?: ReactNode; menu?: MenuItem[]; } & PropsWithChildren; export declare const Page: FC; export default Page;