import type { CenteredShellProp } from "../../props/components/layout.prop.js"; export type { CenteredShellProp, CenteredShellProp as CenteredShellProps, } from "../../props/components/layout.prop.js"; /** * CenteredShell — authenticated, no-sidebar, centred-column page shell: the hosted-ID "My Page", * account / self-service, and standalone-settings shape. It fills the gap between the two existing * shells: - `AppShell` REQUIRES a sidebar — its padded topbar chrome (`.app-topbar`) is a grid * area beside the nav rail, so you cannot get a padded top bar without a rail. - `AuthShell` is * the UNAUTHENTICATED root (login/mfa/reset); it centres its card VERTICALLY, so a page that * scrolls its own content belongs here instead. */ export declare function CenteredShell({ topbar, footer, children, width, align, preset, className, }: CenteredShellProp): import("react").JSX.Element;