/** * Maps old plugin hook function names to new plugin API names */ export declare function transformHookRunner(hookRunnerName: string): string | undefined; /** * Note: * isMultiple Indicates whether the function parameter represents multiple values. */ export declare function transformHookParams(hookRunnerName: string, params: any): { isMultiple: boolean; params: any; }; export declare function transformHookResult(hookRunnerName: string, result: any): any;