import React from 'react'; export declare type TabChangeEventHandler = (id: string | number | undefined, event: React.MouseEvent) => void; export declare const TabPaneTypes: ["line", "card", "grid", "dynamic"]; export declare type TabPaneType = typeof TabPaneTypes[number]; export declare type TabPaneSize = 'middle' | 'small'; export declare type TabPanePosition = 'top' | 'left' | 'right' | 'bottom'; export interface ITabPaneProps { style?: Record; className?: string; type?: TabPaneType; tab?: React.ReactNode; size?: TabPaneSize; position?: TabPanePosition; disabled?: boolean; specialPane?: string; operations?: React.ReactNode[]; id?: string | number; activeKey?: string | number; children?: any; customTitleProps?: any; onChange?: TabChangeEventHandler; } declare const TabPane: React.FC; export default TabPane;