export declare type SortFunction<T> = (a: T, b: T) => number;
/**
 * Recursivly sort arrays and objects.
 * @param value - anything
 */
export declare function deepSort<T>(value: T): T;
//# sourceMappingURL=deepSort.d.ts.map