import type { ILoadOptionsFunctions } from 'n8n-workflow';
export declare function getLlms(this: ILoadOptionsFunctions): Promise<{
    name: string;
    value: string;
}[]>;
export declare function getAgents(this: ILoadOptionsFunctions): Promise<{
    name: string;
    value: string;
}[]>;
export declare function getDatasources(this: ILoadOptionsFunctions): Promise<{
    name: string;
    value: string;
}[]>;
