import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const RepresentativeInfoReason: { readonly Unknown: ""; readonly ProtocolPortCount: "protocol_port_count"; readonly Incapsula: "incapsula"; readonly Zscaler: "zscaler"; }; export type RepresentativeInfoReason = OpenEnum; export type RepresentativeInfo = { excludedPorts?: Array | null | undefined; reason?: RepresentativeInfoReason | undefined; representedPorts?: Array | null | undefined; sampledPort?: number | undefined; }; /** @internal */ export declare const RepresentativeInfoReason$inboundSchema: z.ZodType; /** @internal */ export declare const RepresentativeInfo$inboundSchema: z.ZodType; export declare function representativeInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=representativeinfo.d.ts.map