import { ITabList, ITab } from './types'; declare function TabList({ children, defaultActiveKey, isVertical, onChange, tabStyle, ...props }: ITabList): JSX.Element; declare namespace TabList { var Tab: typeof import("./TabsList").Tab; } export declare function Tab({ activeState, isDisabled, lineHeight, tabKey, tabName, }: ITab): JSX.Element; export default TabList;