import type { AgentPlugin } from "../runtime/plugin-types.js"; import type { PluginSpec } from "./registry.js"; export type OpenaiResponsesPluginOptions = { baseUrl?: string; apiKey?: string; organization?: string; project?: string; defaultHeaders?: Record; timeout?: number; maxRetries?: number; reasoningEffort?: "minimal" | "low" | "medium" | "high"; reasoningSummary?: "auto" | "concise" | "detailed"; include?: string[]; }; export declare const spec: PluginSpec; export declare function openaiResponsesPlugin(opts?: OpenaiResponsesPluginOptions): AgentPlugin;