import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IConsumptionModel } from "./interfaces"; export declare class ConsumptionModel extends Model implements IConsumptionModel { static TABLE_NAME: string; time_utc: string; value: number; addr: string; variable: string; type: string; meter: string; static attributeModel: ModelAttributes; static arrayJsonSchema: JSONSchemaType; }