import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Fields for identifying an authorized individual. */ export type AuthorizedUser = { firstName: string; lastName: string; }; /** @internal */ export declare const AuthorizedUser$inboundSchema: z.ZodType; /** @internal */ export type AuthorizedUser$Outbound = { firstName: string; lastName: string; }; /** @internal */ export declare const AuthorizedUser$outboundSchema: z.ZodType; export declare function authorizedUserToJSON(authorizedUser: AuthorizedUser): string; export declare function authorizedUserFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authorizeduser.d.ts.map