import { ReactNode, HTMLAttributes } from 'react'; import { SidebarProps } from '../../navigation/Sidebar'; export declare const appShellVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type AppShellProps = HTMLAttributes & { children: ReactNode | ReactNode[]; navbarProps: { DesktopLeftContent: ReactNode; DesktopCenterContent?: ReactNode; DesktopRightContent?: ReactNode; MobileLeftContent?: ReactNode; MobileRightContent?: ReactNode; MobileCenterContent?: ReactNode; MobileTopMenuContent?: ReactNode; MobileBottomMenuContent?: ReactNode; }; sidebarProps: SidebarProps & { isHidden?: boolean; }; }; //# sourceMappingURL=types.d.ts.map