import { IIoK8sApiCoreV1LoadBalancerStatus } from "../../v1/LoadBalancerStatus";
import { Model } from "@kubernetes-models/base";
/**
 * IngressStatus describe the current state of the Ingress.
 */
export interface IIngressStatus {
    /**
     * LoadBalancer contains the current status of the load-balancer.
     */
    "loadBalancer"?: IIoK8sApiCoreV1LoadBalancerStatus;
}
/**
 * IngressStatus describe the current state of the Ingress.
 */
export declare class IngressStatus extends Model<IIngressStatus> implements IIngressStatus {
    "loadBalancer"?: IIoK8sApiCoreV1LoadBalancerStatus;
}
export { IIngressStatus as IIoK8sApiExtensionsV1beta1IngressStatus, IngressStatus as IoK8sApiExtensionsV1beta1IngressStatus };
