import * as React from 'react'; declare type TabTheme = 'card' | 'underline'; export declare type TabItem = { tabKey: string; nodeKey: string; tabIndex: string; tabName: React.ReactNode; paneNode: React.ReactElement; }; export interface TabsProps { className?: string; style?: React.CSSProperties; children: React.ReactNode; defaultKey?: string; destroyHiddenPane?: boolean; theme?: TabTheme; onChange?: (activeKey: string) => void; onTabClick?: (activeKey: string) => void; } declare function Tabs({ className, style, children, defaultKey, destroyHiddenPane, theme, onChange, onTabClick }: TabsProps): JSX.Element; declare namespace Tabs { var TabPane: typeof import("./TabPane").default; } export default Tabs;