import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ShippoAccount = { email: string; firstName: string; lastName: string; companyName?: string | undefined; objectCreated?: Date | undefined; objectId?: string | undefined; objectUpdated?: Date | undefined; }; /** @internal */ export declare const ShippoAccount$inboundSchema: z.ZodMiniType; export declare function shippoAccountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shippoaccount.d.ts.map