import type { Prompt } from "@modelcontextprotocol/sdk/types.js"; interface PromptExecutionPanelProps { selectedPrompt: Prompt | null; promptArgs: Record; isExecuting: boolean; isConnected: boolean; onArgChange: (key: string, value: any) => void; onExecute: () => void; onSave: () => void; } export declare function PromptExecutionPanel({ selectedPrompt, promptArgs, isExecuting, isConnected, onArgChange, onExecute, onSave, }: PromptExecutionPanelProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=PromptExecutionPanel.d.ts.map