import React from 'react'; import { ForwardRefWithStaticComponents } from '../../utils/ts/forward-ref-with-static-component'; export declare type TabsComponent = ForwardRefWithStaticComponents; export declare type TabProps = { /** * The active tab's label */ active?: string; onChange: (value: string) => void; options: TabOption[]; }; export declare type TabOption = { [key: string]: any; content?: React.ReactNode; icon?: React.ReactNode; label: string; }; declare const Tabs: TabsComponent; declare const Content: ({ active, children, }: { active: string; children: React.ReactNode; }) => JSX.Element; export { Tabs };