export declare enum SortType { Asc = 0, Desc = 1, } export interface SortCondition { sortField: string; sortType: SortType; } export declare const SortTypes: { label: string; value: SortType; }[];