export interface SortState { field: string; direction: 'asc' | 'desc'; } export declare function applySort(rows: T[], sort: SortState | null): T[]; //# sourceMappingURL=SortEngine.d.ts.map