import { default as React } from 'react'; export interface SheetTab { key: string; label: string; icon?: string; count?: number | string; disabled?: boolean; } interface SheetTabsProps { tabs: SheetTab[]; activeKey: string; onChange: (key: string) => void; className?: string; flushWithGrid?: boolean; aiId?: string; } /** * Slim Excel-like tab bar used below spreadsheet containers. */ declare const SheetTabs: React.FC; export default SheetTabs; //# sourceMappingURL=SheetTabs.d.ts.map