import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ImmediateFamilyMember, ImmediateFamilyMember$Outbound } from "./immediatefamilymember.js"; /** * Detail around the related politically exposed Person */ export type RelatedPep = { /** * Information about the immediate family members of the related politically exposed person */ immediateFamilyMembers?: Array | undefined; /** * The organization a politically exposed person is associated with causing them to be considered politically exposed */ organization?: string | undefined; /** * The name of the related politically exposed person */ pepName?: string | undefined; /** * The title of the related politically exposed person */ title?: string | undefined; }; /** @internal */ export declare const RelatedPep$inboundSchema: z.ZodType; /** @internal */ export type RelatedPep$Outbound = { immediate_family_members?: Array | undefined; organization?: string | undefined; pep_name?: string | undefined; title?: string | undefined; }; /** @internal */ export declare const RelatedPep$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 RelatedPep$ { /** @deprecated use `RelatedPep$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RelatedPep$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RelatedPep$Outbound` instead. */ type Outbound = RelatedPep$Outbound; } export declare function relatedPepToJSON(relatedPep: RelatedPep): string; export declare function relatedPepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=relatedpep.d.ts.map