import type { Comparator } from "@rickosborne/typical"; export interface DeepSortOptions { keySorting?: "ecma" | "text" | Comparator; } /** * Sort an object, and any objects nested through plain objects * or arrays, by key, so when JSON stringified you will get a * deterministic output. */ export declare const deepSort: (obj: T, options?: DeepSortOptions) => T; //# sourceMappingURL=deep-sort.d.ts.map