import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RepresentativeResponsibilitiesError = { isController?: string | undefined; isOwner?: string | undefined; ownershipPercentage?: string | undefined; jobTitle?: string | undefined; }; /** @internal */ export declare const RepresentativeResponsibilitiesError$inboundSchema: z.ZodType; /** @internal */ export type RepresentativeResponsibilitiesError$Outbound = { isController?: string | undefined; isOwner?: string | undefined; ownershipPercentage?: string | undefined; jobTitle?: string | undefined; }; /** @internal */ export declare const RepresentativeResponsibilitiesError$outboundSchema: z.ZodType; export declare function representativeResponsibilitiesErrorToJSON(representativeResponsibilitiesError: RepresentativeResponsibilitiesError): string; export declare function representativeResponsibilitiesErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=representativeresponsibilitieserror.d.ts.map