import * as React from 'react'; export type PageContainerVariant = 'surface' | 'canvas'; export interface PageContainerProps extends React.HTMLAttributes { /** * Background variant. * - "surface" (default): bg-bg-surface — solid card-like background for most pages. * - "canvas": bg-bg-canvas — slightly elevated tone used when the page itself * contains many surface cards. */ variant?: PageContainerVariant; /** * Apply default page padding. Set to false when the page provides its own. * Defaults to true. */ padded?: boolean; } /** * Standard page wrapper used across microfes to guarantee a consistent * background, padding, and minimum height. Pages that omit a background * inherit the system default (often appears black in dark mode) which breaks * theme parity — wrap with PageContainer to avoid that. */ export declare const PageContainer: React.ForwardRefExoticComponent>; //# sourceMappingURL=page-container.d.ts.map