import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow';
export declare class Alive5 implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getChannels(this: ILoadOptionsFunctions): Promise<any>;
            getAgents(this: ILoadOptionsFunctions): Promise<any>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
