import { ModelData, Model } from "@kubernetes-models/base"; /** * DefaultGateway is the configuration for auto-discovery of the default gateway. */ export interface IDefaultGateway { /** * addressFamily is the address family of the default gateway. */ "addressFamily": "ipv4" | "ipv6"; } /** * DefaultGateway is the configuration for auto-discovery of the default gateway. */ export declare class DefaultGateway extends Model implements IDefaultGateway { "addressFamily": "ipv4" | "ipv6"; constructor(data?: ModelData); } export type { IDefaultGateway as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2DefaultGateway, DefaultGateway as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2DefaultGateway };