import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type NodeExecutionWithMetadata } from 'n8n-workflow';
import { getAgents, getDatasources, getLlms } from '../utils';
export declare class IzzOne implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getAgents: typeof getAgents;
            getDatasources: typeof getDatasources;
            getLlms: typeof getLlms;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | NodeExecutionWithMetadata[][]>;
}
