import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IPpasDistributionInvoiceDevice } from "./interfaces/IPpasDistributionInvoiceDevice"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; export declare class PpasDistributionInvoiceDeviceModel extends Model implements IPpasDistributionInvoiceDevice { static TABLE_NAME: string; device_serial_number: string; invoice_id: string; date_from: string; date_to: string; type: string; kind: string; reading_type: string; reading_from: number; reading_to: number; consumption: number; unit: string; meter_reading_type: string; gas_consumption_kwh: number; volume_coefficient: number; combustion_heat: number; normometers_nm3: number; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }