import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Possible value of a specific parameter */ export type PossibleValue = { /** * Possible value */ value?: string | undefined; /** * User-friendly label associated with the value */ label?: string | undefined; }; /** @internal */ export declare const PossibleValue$inboundSchema: z.ZodType; /** @internal */ export type PossibleValue$Outbound = { value?: string | undefined; label?: string | undefined; }; /** @internal */ export declare const PossibleValue$outboundSchema: z.ZodType; export declare function possibleValueToJSON(possibleValue: PossibleValue): string; export declare function possibleValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=possiblevalue.d.ts.map