export interface TabType { id: number; text: string; } export interface TabsProps { initialActiveTabId?: number; onClick?: (tab: TabGeneric) => unknown; tabItems: readonly TabGeneric[]; } export declare const Tabs: ({ initialActiveTabId, onClick, tabItems, }: TabsProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map