interface Tab { id: string; label: string; icon?: 'bulb' | 'book' | 'chat'; } interface Props { tabs: Tab[]; activeId: string; onChange: (id: string) => void; } export declare function Tabs({ tabs, activeId, onChange }: Props): import("react/jsx-runtime").JSX.Element; export {};