import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Chatwoot implements INodeType {
    description: INodeTypeDescription;
    loadOptions(this: ILoadOptionsFunctions): Promise<{
        name: string;
        value: string | number;
    }[]>;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
