import { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; type CloseWebhookPayload = { event?: unknown; data?: { id?: unknown; status?: unknown; old_status?: unknown; previous_status?: unknown; previous?: { status?: unknown; }; } & Record; } & Record; export declare function evaluateCustomActivityWebhook(payload: CloseWebhookPayload, cachedStatus?: string): { shouldEmit: boolean; activityId?: string; currentStatus?: string; }; export declare class CloseTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; } export {};