import { ISorter } from './type';
export declare function sortData<T>(dataSource: T[], sorter: boolean | ISorter<T>, dataIndex: string, order: 'ascend' | 'descend', isNumeric?: boolean): T[];
