import { ContextEstablishmentOptions, ContextEstablishmentResult, HookDescription, IContextEstablishmentHook } from '@n8n/decorators'; import { InstanceRedactionEnforcementService } from './instance-redaction-enforcement.service'; export declare class RedactionContextHook implements IContextEstablishmentHook { private readonly instanceRedactionEnforcementService; constructor(instanceRedactionEnforcementService: InstanceRedactionEnforcementService); hookDescription: HookDescription; isApplicableToTriggerNode(_nodeType: string): boolean; execute(options: ContextEstablishmentOptions): Promise; }