import { IconProps } from '../Icon/index.js'; export type Tabs = { value: string; label?: string; icon?: IconProps['variant']; disabled?: boolean; }; export type TabsProps = { value?: string; onChange: (value: string) => void; tabs: Tabs[]; }; export declare function Tabs({ tabs, value: activeValue, onChange }: TabsProps): import("react/jsx-runtime").JSX.Element;