import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type NetworkMobileInfo = { /** * The name of the mobile carrier. */ carrierName?: string | undefined; /** * The Mobile Country Code, identifying the country of the mobile network. */ mcc?: string | undefined; /** * The Mobile Network Code, identifying the specific carrier network. */ mnc?: string | undefined; }; /** @internal */ export declare const NetworkMobileInfo$inboundSchema: z.ZodType; export declare function networkMobileInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=networkmobileinfo.d.ts.map