import { MouseEvent, ComponentClass } from 'react' import AtComponent from './base' export interface AtTabsPaneProps extends AtComponent { /** * Tab 方向,请跟 AtTabs 保持一致 * @default 'horizontal' */ tabDirection/*;标签方向*/?: 'horizontal'/*;水平*/ | 'vertical'/*;垂直*/ /** * 当前选中的标签索引值,从 0 计数,请跟 AtTabs 保持一致 * @default 0 */ current/*;当前*/: number /** * tabPane 排序,从 0 计数 * @default 0 */ index/*;索引*/: number } declare const AtTabsPane: ComponentClass export default AtTabsPane