import type { HookMethod } from "./HookMethod"; import { HookType } from "./HookType"; export declare class HookRegistry { private _hooks; constructor(); addHook(type: HookType, method: HookMethod): void; get(type: HookType, tags: Array): Array; setInstanceForMethodsIn(file: string, instance: Record): void; clear(): void; private static hasIntersection; } declare const hookRegistry: HookRegistry; export default hookRegistry;