import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ShippoAccount } from "./shippoaccount.js"; export type ShippoAccountPaginatedList = { next?: string | undefined; previous?: string | undefined; results?: Array | undefined; }; /** @internal */ export declare const ShippoAccountPaginatedList$inboundSchema: z.ZodMiniType; export declare function shippoAccountPaginatedListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shippoaccountpaginatedlist.d.ts.map