import { LockReasonEnum } from './LockReasonEnum';
/** A structure describing the lock status of a VPS */
export interface LockStatus {
    /** Indicates whether the VPS is locked */
    locked: boolean;
    /** The reason for the lock */
    reason: LockReasonEnum;
}
//# sourceMappingURL=LockStatus.d.ts.map