import * as React from "react"; declare type SizeValues = "large" | "default" | "small"; interface TabsProps { defaultActiveKey: string; onChange: (key: string) => void; size?: SizeValues; children: any; } export declare const Tabs: { ({ defaultActiveKey, onChange, size, children }: TabsProps): JSX.Element; TabPane: ({ tab, tabKey, disabled }: TabPaneProps) => JSX.Element; }; interface TabPaneProps { tab: string | React.ReactNode; tabKey: string; disabled?: boolean; children: string | string[] | React.ReactNode | React.ReactNode[]; } export declare const TabPane: ({ tab, tabKey, disabled }: TabPaneProps) => JSX.Element; export default Tabs;