import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; import { getForms } from './GenericFunctions'; export declare class FormstackTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getForms: typeof getForms; }; }; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; } //# sourceMappingURL=FormstackTrigger.node.d.ts.map