export interface WeakRegistry { readonly get: (key: string) => V | undefined; readonly set: (key: string, value: V) => void; readonly delete: (key: string) => boolean; readonly clear: () => void; readonly values: () => IterableIterator; } export declare const createWeakRegistry: () => WeakRegistry; //# sourceMappingURL=weak-registry.d.ts.map