import { VrackStateEnum } from './VrackStateEnum';
/** Information about vRack for your Load Balancer */
export interface VrackInformation {
    /** State of the vRack link to your Load Balancer */
    state: VrackStateEnum;
    /** Ongoing task related to vRack installation or uninstallation on your Load Balancer */
    task: number[];
    /** Name of the vRack on which the current Load Balancer is attached to, as it is named on vRack product */
    vrackName?: string;
}
//# sourceMappingURL=VrackInformation.d.ts.map