export declare enum SortOrder { AtoZ = "aToZ", ZtoA = "zToA" } export declare function getSortLabel(sortOrder: SortOrder | string): string;