interface TabsProps {
    activeKey?: string;
    defaultActiveKey?: string;
    onChange?: (key: string) => void;
    onTabClick?: (key: string) => void;
    tabBarPosition?: 'top' | 'bottom';
    animated?: boolean;
    swipeable?: boolean;
    children?: any;
    underlineColor?: string;
    activeUnderlineColor?: string;
    textColor?: string;
    activeTextColor?: string;
    styles?: any;
    barStyle?: any;
    className?: string;
    prefixCls?: string;
    destroyInactiveTabPane?: boolean;
    pageSize?: Number;
    speed?: Number;
    tabBarhammerOptions?: any;
    hammerOptions?: any;
}
export default TabsProps;
