import { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from "n8n-workflow"; import { getSurveys } from "./GenericFunctions"; export declare class Formbricks implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getSurveys: typeof getSurveys; }; }; webhookMethods: { default: { checkExists(this: any): Promise; create(this: any): Promise; delete(this: any): Promise; }; }; webhook(this: IWebhookFunctions): Promise; }