import type { SortOrder } from "../../types/types"; /** * Sort an array of data based on sort configuration * @param data The data to sort * @param sortConfig The sort configuration (field -> order mapping) * @returns The sorted data */ export declare function sortData>(data: T[], sortConfig?: Partial>): T[]; //# sourceMappingURL=sort.d.ts.map