import * as React from 'react'; declare const TabPanel: React.FunctionComponent; export interface TabPanelProps { tab?: React.ReactNode; prefixCls?: string; className?: string; active?: boolean; fixX?: boolean; fixY?: boolean; } export default TabPanel;