import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IEnapoMeasurementsDto } from "./interfaces/IEnapoMeasurmentsDto"; export declare class EnapoMeasurementsModel extends Model implements IEnapoMeasurementsDto { static TABLE_NAME: string; static REPOSITORY_NAME: string; static JSON_SCHEMA_VALIDATOR_NAME: string; id: string; id_type: string; value: number; timestamp: Date; var: string; source: string; place_id: string; device_serial_number: string; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }