import React from 'react'; export interface TabItem { label: string; value: string; content: React.ReactNode; disabled?: boolean; } export interface TabsProps extends Omit, 'onChange'> { /** * The tab items */ items: TabItem[]; /** * The default active tab value */ defaultValue?: string; /** * Callback when the active tab changes */ onTabChange?: (value: string) => void; } /** * Tabs component for organizing content * * @example * ```tsx * Content 1 }, * { label: 'Tab 2', value: 'tab2', content:
Content 2
}, * ]} * /> * ``` */ export declare const Tabs: React.ForwardRefExoticComponent>; //# sourceMappingURL=Tabs.d.ts.map