import { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; export declare class CloudConvertTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; methods: {}; webhook(this: IWebhookFunctions): Promise; }