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