import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountTestPhoneData = { /** * A random, fictitious, unassigned phone number. */ phone: string; }; /** @internal */ export declare const AccountTestPhoneData$inboundSchema: z.ZodType; /** @internal */ export type AccountTestPhoneData$Outbound = { phone: string; }; /** @internal */ export declare const AccountTestPhoneData$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AccountTestPhoneData$ { /** @deprecated use `AccountTestPhoneData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountTestPhoneData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountTestPhoneData$Outbound` instead. */ type Outbound = AccountTestPhoneData$Outbound; } export declare function accountTestPhoneDataToJSON(accountTestPhoneData: AccountTestPhoneData): string; export declare function accountTestPhoneDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accounttestphonedata.d.ts.map