import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NetworkMobileInfo } from "./networkmobileinfo.js"; export type NetworkClassification = { /** * Whether the host belongs to an Internet hosting service provider. */ hosting?: boolean | undefined; /** * Whether the host belongs to a mobile network. */ mobile?: boolean | undefined; mobileInfo?: NetworkMobileInfo | undefined; /** * Whether the host belongs to a statellite network. */ satellite?: boolean | undefined; /** * The source of the data. */ source?: string | undefined; }; /** @internal */ export declare const NetworkClassification$inboundSchema: z.ZodType; export declare function networkClassificationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=networkclassification.d.ts.map