import { ModelData, Model } from "@kubernetes-models/base"; export interface IBGPFamilyRouteCount { /** * Advertised is the number of routes advertised to this peer. */ "advertised"?: number; /** * Afi is the Address Family Identifier (AFI) of the family. */ "afi": "ipv4" | "ipv6" | "l2vpn" | "ls" | "opaque"; /** * Received is the number of routes received from this peer. */ "received"?: number; /** * Safi is the Subsequent Address Family Identifier (SAFI) of the family. */ "safi": "unicast" | "multicast" | "mpls_label" | "encapsulation" | "vpls" | "evpn" | "ls" | "sr_policy" | "mup" | "mpls_vpn" | "mpls_vpn_multicast" | "route_target_constraints" | "flowspec_unicast" | "flowspec_vpn" | "key_value"; } export declare class BGPFamilyRouteCount extends Model implements IBGPFamilyRouteCount { "advertised"?: number; "afi": "ipv4" | "ipv6" | "l2vpn" | "ls" | "opaque"; "received"?: number; "safi": "unicast" | "multicast" | "mpls_label" | "encapsulation" | "vpls" | "evpn" | "ls" | "sr_policy" | "mup" | "mpls_vpn" | "mpls_vpn_multicast" | "route_target_constraints" | "flowspec_unicast" | "flowspec_vpn" | "key_value"; constructor(data?: ModelData); } export type { IBGPFamilyRouteCount as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPFamilyRouteCount, BGPFamilyRouteCount as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPFamilyRouteCount };