import { IIoK8sApiNetworkingV1ParentReference } from "./ParentReference";
import { ModelData, Model } from "@kubernetes-models/base";
/**
 * IPAddressSpec describe the attributes in an IP Address.
 */
export interface IIPAddressSpec {
    /**
     * ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object.
     */
    "parentRef": IIoK8sApiNetworkingV1ParentReference;
}
/**
 * IPAddressSpec describe the attributes in an IP Address.
 */
export declare class IPAddressSpec extends Model<IIPAddressSpec> implements IIPAddressSpec {
    "parentRef": IIoK8sApiNetworkingV1ParentReference;
    constructor(data?: ModelData<IIPAddressSpec>);
}
export { IIPAddressSpec as IIoK8sApiNetworkingV1IPAddressSpec, IPAddressSpec as IoK8sApiNetworkingV1IPAddressSpec };
