import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { getAgents, getPersonas, getPlaybooks, getProducts } from './methods/loadOptions';
export declare class Octave implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getAgents: typeof getAgents;
            getPlaybooks: typeof getPlaybooks;
            getPersonas: typeof getPersonas;
            getProducts: typeof getProducts;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
