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