import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Variables = string | any; export type PromptTemplate = { id: string; variables?: { [k: string]: string | any; } | undefined; version?: string | undefined; }; /** @internal */ export declare const Variables$inboundSchema: z.ZodType; /** @internal */ export type Variables$Outbound = string | any; /** @internal */ export declare const Variables$outboundSchema: z.ZodType; export declare function variablesToJSON(variables: Variables): string; export declare function variablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PromptTemplate$inboundSchema: z.ZodType; /** @internal */ export type PromptTemplate$Outbound = { id: string; variables?: { [k: string]: string | any; } | undefined; version?: string | undefined; }; /** @internal */ export declare const PromptTemplate$outboundSchema: z.ZodType; export declare function promptTemplateToJSON(promptTemplate: PromptTemplate): string; export declare function promptTemplateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=prompttemplate.d.ts.map