import React from 'react'; export declare type TabsInternalCellProps = { value: string | undefined; onClick: (value: string) => void; }; export declare type TabsInternalCell = React.FC; export interface TabsHeaderItem { value: string; cell: TabsInternalCell; } export interface TabsConfig { register?: (item: TabsHeaderItem) => void; currentValue?: string; inGroup: boolean; } export declare const TabsContext: React.Context; export declare const useTabsContext: () => TabsConfig;