import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { IConsumption } from "./interfaces/IConsumption"; export declare class PorsennaConsumptionModel extends Model implements IConsumption { static TABLE_NAME: string; static REPOSITORY_NAME: string; static JSON_SCHEMA_VALIDATOR_NAME: string; source: string; device_id: string; var: string; period: string; value: number; unit: string; commodity: string | null; count: number | null; created_at: Date; updated_at: Date | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }