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