export type TouchType = bigint | Date | symbol | string | boolean | number | Uint8Array | null | undefined | object; export type TouchFn = (value: TouchType, type: keyof typeof TouchTypes) => void; export declare const TouchTypes: { Null: string; Key: string; String: string; Boolean: string; Number: string; Date: string; Symbol: string; Uint8Array: string; Array: string; Function: string; }; export declare function toSorted(arrayOrObject: T, touchFn?: TouchFn): T; //# sourceMappingURL=to-sorted.d.ts.map