import type { AuthShellProp } from "../../props/components/layout.prop.js"; export type { AuthShellProp, AuthShellProp as AuthShellProps, } from "../../props/components/layout.prop.js"; /** * AuthShell — centred auth/login page shell (login · mfa · passkey · device · reset). A top brand * bar (banner), a centred `main` that holds the auth `Card`, and an optional footer (contentinfo), * over a `min-h-dvh` surface. The banner also carries page-level `actions` at its inline end (a * locale picker, a theme toggle), and `measure="wide"` opens the content slot to the split login * (a brand panel beside the card) that used to have no shell of its own. */ export declare function AuthShell({ brand, actions, footer, children, variant, preset, measure, align, density, className, }: AuthShellProp): import("react").JSX.Element;