import { IBaseBooleanValue } from "../type-specific-interfaces/base-boolean-value";
import { UpdateValue } from "./update-value";
/**
 * @category Model V2
 */
export declare class UpdateBooleanValue extends UpdateValue implements IBaseBooleanValue {
    bool: boolean;
    constructor();
}
