/** * Sorts a map by `comparator`, a function that compares two entries, * defaulting to using `localeCompare` and `>`. */ export declare const sort_map: >(map: T, comparator?: (a: [any, any], b: [any, any]) => number) => T; /** * Compares two map entries for sorting purposes. * If the key is a string, it uses `localeCompare` for comparison. * For other types, it uses `>`. */ export declare const compare_simple_map_entries: (a: [any, any], b: [any, any]) => number; //# sourceMappingURL=map.d.ts.map