import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreatePromptRequest = { /** * Human-readable prompt name */ name: string; /** * Detailed description of the prompt */ description?: string | undefined; /** * The prompt template text with {{variable}} placeholders */ template: string; /** * Custom metadata key-value pairs */ metadata?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CreatePromptRequest$inboundSchema: z.ZodType; /** @internal */ export type CreatePromptRequest$Outbound = { name: string; description?: string | undefined; template: string; metadata?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CreatePromptRequest$outboundSchema: z.ZodType; export declare function createPromptRequestToJSON(createPromptRequest: CreatePromptRequest): string; export declare function createPromptRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createpromptrequest.d.ts.map