import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Country detail used for Dow Jones Profile details */ export type CountryDetail = { /** * Dow Jones persons country type */ countryType?: string | undefined; /** * Two character region code, complies with https://cldr.unicode.org/index Example values: "US", "CA" */ regionCode?: string | undefined; }; /** @internal */ export declare const CountryDetail$inboundSchema: z.ZodType; /** @internal */ export type CountryDetail$Outbound = { country_type?: string | undefined; region_code?: string | undefined; }; /** @internal */ export declare const CountryDetail$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 CountryDetail$ { /** @deprecated use `CountryDetail$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CountryDetail$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CountryDetail$Outbound` instead. */ type Outbound = CountryDetail$Outbound; } export declare function countryDetailToJSON(countryDetail: CountryDetail): string; export declare function countryDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=countrydetail.d.ts.map