import { IExecuteFunctions, INodeType, INodeTypeDescription, INodeExecutionData } from 'n8n-workflow';
/**
 * Professional n8n node for Octagon AI Agents
 * Provides access to 15 specialized financial and market research AI agents
 *
 * @author Octagon <ken@octagonai.co>
 * @version 1.0.4
 * @since 2024-01-15
 */
export declare class OctagonAgents implements INodeType {
    description: INodeTypeDescription;
    /**
     * Executes the Octagon AI agent request
     *
     * @param this - The n8n execution context
     * @returns Promise<INodeExecutionData[][]> - Formatted response with analysis and citations
     * @throws Error when API request fails or authentication is invalid
     */
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=OctagonAgents.node.d.ts.map