/** * Recipe configuration for the DefaultPage component. * Defines the styling variants and base styles using Chakra UI's recipe system. */ export declare const defaultPageSlotRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "content" | "footer" | "header" | "title" | "backLink" | "subtitle" | "actions" | "tabNav", { layout: { /** * Constrained layout: the page fills the parent container height. * Only the content area scrolls. The header and footer are naturally * pinned by the CSS grid. */ constrained: { root: { height: "100%"; }; content: { overflow: "auto"; }; }; /** * Flexible layout: the page grows with its content. * The whole scroll container scrolls. Use `stickyHeader`/`stickyFooter` * to pin the header or footer. */ flexible: { root: { height: "auto"; }; }; }; stickyHeader: { true: { header: { position: "sticky"; top: number; zIndex: number; bg: "bg"; }; }; }; stickyFooter: { true: { footer: { position: "sticky"; bottom: number; zIndex: number; bg: "bg"; }; }; }; }>;