/** * blazingly fast utility to create unique ids for any type of variables, which * can be used to create things such as cache keys or check for duplcates of * multiple inputs etc. * * uses a WeakMap under the hood to provide near-instant id generation and * caching for subsequent delivery of id on the same variable */ export declare function generateVariableId(variable: unknown): string; //# sourceMappingURL=generate-variable-id.d.ts.map