/** * Internal Agent Executor * Uses Paean's built-in agent service for task execution */ import type { ExecutorOptions, ExecutorResult } from '../types.js'; import type { AgentExecutor } from './index.js'; export declare class InternalExecutor implements AgentExecutor { readonly type: "internal"; private abortController; /** * Internal executor is always available */ isAvailable(): Promise; /** * Execute a prompt using the internal agent service */ execute(prompt: string, options?: ExecutorOptions): Promise; /** * Abort current execution */ abort(): void; } //# sourceMappingURL=internal.d.ts.map