import { Operator } from ".."; import type { CommonFunction } from "../utils/Util"; export declare class HookMethod { private readonly _method; private readonly _file; private readonly _options; private _instance; constructor(method: CommonFunction, file: string, options?: { tags: Array; operator?: Operator; }); getMethod(): CommonFunction; getFilePath(): string; setInstance(instance: Record): void; getTags(): Array; getTagAggregationOperator(): Operator; getInstance(): Record | undefined; }