export declare type SortDirection = 'ASCENDING' | 'DESCENDING'; export declare type SortRequest = { [field: string]: SortDirection; }; export declare const buildSortParams: (req: SortRequest) => string; //# sourceMappingURL=Sort.d.ts.map