import { IBaseDecimalValue } from "../type-specific-interfaces/base-decimal-value";
import { UpdateValue } from "./update-value";
/**
 * @category Model V2
 */
export declare class UpdateDecimalValue extends UpdateValue implements IBaseDecimalValue {
    decimal: number;
    constructor();
}
