import type { ReactNode } from "react"; export * from "./variants.js"; type AppShellDefaultProps = { variant?: "default"; header: ReactNode; children: ReactNode; }; type AppShellAuthProps = { variant: "auth"; children: ReactNode; footer?: ReactNode; }; type AppShellProps = AppShellDefaultProps | AppShellAuthProps; export declare function AppShell(props: AppShellProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map