import { Value } from '@shujujiang/schemas/widget/model/encoding'; import { WidgetDataModel } from '@shujujiang/schemas/widget/model'; export declare class DataModel extends WidgetDataModel { /** * @title 数据配置 * @expansion true * @order 1 */ encoding: { /** * 读数。 * @title 读数 * @order 1 */ value: Value; /** * @title 最小值 * @expansion true * @order 2 */ minValue: Value; /** * @title 最大值 * @order 3 */ maxValue: Value; }; }