export interface MenuConfig { id: string; buttonSize?: string; icon?: string; iconSize?: string; text: string; count?: number; path?: string; fixed?: boolean; } export interface AccountConfig { id: string; fullName: string; photo: string; } export interface LeftSidebarConfig { account: AccountConfig; rows: Array; } export interface PageContainerConfig { backTitle: string; headerTitle: string; leftSidebar: LeftSidebarConfig; }