import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class ChatData implements INodeType { constructor(); description: INodeTypeDescription; methods: { loadOptions: { getChatbots(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }