import { SidebarMenuGroup } from './SidebarMenu.ts'; import { TopbarContent } from './Topbar.ts'; import { FooterLink } from './Footer.ts'; export interface LayoutProps { layout?: 'basic'; theme?: 'light' | 'dark' | 'blue' | 'orange'; headerWidth?: 'full' | 'half'; iconPath?: string; title?: string; menus: SidebarMenuGroup[]; topbarContent?: TopbarContent[]; footerLinks?: FooterLink[]; }