export interface PatchedWindow { [patchedMethods]: Set; } declare const patchedMethods: unique symbol; /** * Maintains a global */ export declare function registerPatch(identifier: symbol): void; export declare function deregisterPatch(identifier: symbol): void; export declare function hasRegisteredPatch(identifier: symbol): boolean; export {};