import { CSSProperties, FunctionComponent, Key, MouseEvent, ReactNode } from 'react'; import { TabsType } from './enum'; export interface TabBarProps { inkBarAnimated?: boolean | undefined; scrollAnimated?: boolean | undefined; extraContent?: ReactNode; style?: CSSProperties | undefined; inkBarStyle?: CSSProperties | undefined; tabBarGutter?: number | undefined; className?: string | undefined; type?: TabsType | undefined; onRemoveTab: (targetKey: Key | null, e: MouseEvent) => void; } declare const TabBar: FunctionComponent; export default TabBar;