import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MCPServerIcon } from "./mcpservericon.js"; import { PromptArgument } from "./promptargument.js"; export type MCPPrompt = { name: string; title?: string | null | undefined; description?: string | null | undefined; arguments?: Array | null | undefined; icons?: Array | null | undefined; meta?: { [k: string]: any; } | null | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const MCPPrompt$inboundSchema: z.ZodType; export declare function mcpPromptFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcpprompt.d.ts.map