import { type NavbarProps } from '../navbar/Navbar'; import { type SidebarProps } from '../sidebar/Sidebar'; /** * Primary UI component for Dashboard App Shell */ interface ShellPropsHorizontal { direction: 'horizontal'; sidebar: SidebarProps; children: React.ReactNode; } interface ShellPropsVertical { direction: 'vertical'; navbar: NavbarProps; children: React.ReactNode; } export type ShellProps = ShellPropsHorizontal | ShellPropsVertical; export declare const Shell: React.FC; export {};