export interface ImportSpecInput { url?: string; content?: string; name?: string; } interface WorkflowSummary { name: string; title: string; description: string; steps_count: number; source_type: string; } export interface ImportSpecResponse { spec_id: string; sandbox_id: string; name: string; version: string; endpoint_count: number; workflow_count: number; base_url: string; dashboard_url: string; workflows_preview: WorkflowSummary[]; workflows_truncated: boolean; next_step_hint: string; } export declare const importSpecTool: { readonly name: "import_spec"; readonly description: string; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly url: { readonly type: "string"; readonly description: string; }; readonly content: { readonly type: "string"; readonly description: string; }; readonly name: { readonly type: "string"; readonly description: string; }; }; readonly additionalProperties: false; }; }; export declare function runImportSpec(input: ImportSpecInput): Promise; export {};