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