export declare class Feature { label: string; code: string; href?: string; embedded?: string; disabled?: boolean; items?: Feature[]; } export interface Segment extends Feature { icon: string; } export interface FeatureGroup { label: string; code: string; icon: string; items: Feature[]; } export interface User { lastName: string; firstName: string; title: string; imageBase64?: string; [key: string | number | symbol]: unknown; } export interface Sidebar { HOME: Segment; UTILITIES: Segment[][]; FEATURES: FeatureGroup[]; USER_FEATURES: Feature[]; } export type A11yLabels = { [key in 'open' | 'close' | 'external-link-suffix' | 'open-user' | 'close-user']: string; }; //# sourceMappingURL=sidebar.types.d.ts.map