import * as z from "zod/v4"; export type PromptsGetRequest = { promptId: string; version?: number | undefined; alias?: string | undefined; fields?: Array | undefined; }; /** @internal */ export type PromptsGetRequest$Outbound = { prompt_id: string; version?: number | undefined; alias?: string | undefined; fields?: Array | undefined; }; /** @internal */ export declare const PromptsGetRequest$outboundSchema: z.ZodType; export declare function promptsGetRequestToJSON(promptsGetRequest: PromptsGetRequest): string; //# sourceMappingURL=promptsget.d.ts.map