import { type IExecuteFunctions, type IHookFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type IWebhookFunctions, type IWebhookResponseData } from "n8n-workflow"; export declare class RoamTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; webhook(this: IWebhookFunctions): Promise; }