export type Hashable = string | number | boolean | null | undefined | bigint | Readonly<{ toJSON(key: string): unknown; }> | Readonly<{ [key: string | number]: Hashable; [key: symbol]: never; }> | ReadonlyArray | ReadonlyMap | ReadonlySet; export declare const hashArgs: (args: Hashable[]) => string; //# sourceMappingURL=hashArgs.d.ts.map