import { Tabs as TabsParent } from './tabs';
import { TabsList } from './tabs-list';
import { TabsPanel } from './tabs-panel';
import { TabsTab } from './tabs-tab';
type Tabs = typeof TabsParent & {
/**
* The container for all `Tab` components.
*
* @example
*
* Tab 1
* Tab 2
*
*/
List: typeof TabsList;
/**
* A single item in a Tabs component.
*
* @example
* Tab 1
*/
Tab: typeof TabsTab;
/**
* A single content item in a Tabs component.
*
* @example
* content 1
*/
Panel: typeof TabsPanel;
};
/**
* Display a group of tabs that can be toggled between.
*
* @example
* console.log(value)}>
*
* Tab 1
* Tab 2
* Tab 3
*
* content 1
* content 2
* content 3
*
*/
declare const TabsComponent: Tabs;
export type { TabsProps } from './tabs';
export type { TabsListProps } from './tabs-list';
export type { TabsPanelProps } from './tabs-panel';
export type { TabsTabProps } from './tabs-tab';
export { TabsComponent as Tabs, TabsList, TabsPanel, TabsTab };
//# sourceMappingURL=index.d.ts.map