import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type VoiceAppearance = { skinColor?: string | null | undefined; hairColor?: string | null | undefined; backgroundColor?: string | null | undefined; avatarId?: string | null | undefined; }; /** @internal */ export declare const VoiceAppearance$inboundSchema: z.ZodType; /** @internal */ export type VoiceAppearance$Outbound = { skin_color?: string | null | undefined; hair_color?: string | null | undefined; background_color?: string | null | undefined; avatar_id?: string | null | undefined; }; /** @internal */ export declare const VoiceAppearance$outboundSchema: z.ZodType; export declare function voiceAppearanceToJSON(voiceAppearance: VoiceAppearance): string; export declare function voiceAppearanceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=voiceappearance.d.ts.map