export interface HeaderTabMenuItem {
    id: string;
    label: string;
    active?: boolean;
    onClick: () => void;
}
