import { ModelData, Model } from "@kubernetes-models/base";
/**
 * HostIP represents a single IP address allocated to the host.
 */
export interface IHostIP {
    /**
     * IP is the IP address assigned to the host
     */
    "ip": string;
}
/**
 * HostIP represents a single IP address allocated to the host.
 */
export declare class HostIP extends Model<IHostIP> implements IHostIP {
    "ip": string;
    constructor(data?: ModelData<IHostIP>);
}
export type { IHostIP as IIoK8sApiCoreV1HostIP, HostIP as IoK8sApiCoreV1HostIP };
