import React from 'react';
interface IProps {
    dataSource?: any[];
    width?: number;
    onResize?: () => any;
    dataIndex?: string;
    onResizeStop?: () => any;
    [key: string]: any;
}
/** 排序的表头 */
declare const ResizableHeight: (props: IProps) => React.JSX.Element;
export default ResizableHeight;
