import React, { CSSProperties, MouseEvent } from 'react'; export type TabsInternalCellProps = { onClick: (value: string) => void; onMouseOver: (e: MouseEvent) => void; activeClassName?: string; activeStyle?: CSSProperties; hideBorder?: boolean; }; export type TabsInternalCell = React.FC; export interface TabsHeaderItem { value: string; cell: TabsInternalCell; } export interface TabsConfig { register?: (item: TabsHeaderItem) => void; currentValue?: string; inGroup: boolean; leftSpace?: CSSProperties['marginLeft']; } export declare const TabsContext: React.Context; export declare const useTabsContext: () => TabsConfig;