import type { ReactNode } from "react"; export * from "./variants.js"; type PageProps = { children: ReactNode; layout?: "flow" | "fixed"; }; export declare function Page({ children, layout }: PageProps): import("react").JSX.Element; type PageContentProps = { children: ReactNode; variant?: "default" | "narrow" | "wide" | "full"; region?: "header" | "body"; }; export declare function PageContent({ children, variant, region }: PageContentProps): import("react").JSX.Element; type ContentSurfaceProps = { children: ReactNode; }; export declare function ContentSurface({ children }: ContentSurfaceProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map