/** * Header Component * * Bordered header with title line and tab bar with active underline indicators. * Inspired by lazygit tab bar, k9s header, btop++ section headers. * * @since v2.7.0 - Redesigned with bordered container and underline-style active tab */ import React from 'react'; import type { Tier } from '../../../core/types/auth.js'; import type { TabId } from '../../state/index.js'; export interface Tab { id: TabId; label: string; shortcut?: string; } export interface HeaderProps { tabs: Tab[]; activeTab: string; showHelp?: boolean; /** User's subscription tier (for premium features) */ tier?: Tier; /** Set of tab IDs that are locked for the current user's tier (v2.2.6) */ lockedTabs?: Set; } declare function HeaderBase({ tabs, activeTab, showHelp, tier, lockedTabs }: HeaderProps): React.ReactElement; export declare const Header: React.MemoExoticComponent; export {}; //# sourceMappingURL=Header.d.ts.map