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; place_id: string; date_from: string; date_to: string; type: string; kind: string; reading_type: string; reading_from: number | null; reading_to: number | null; consumption: number | null; unit: string; meter_reading_type: string | null; gas_consumption_kwh: number | null; volume_coefficient: number | null; combustion_heat: number | null; normometers_nm3: number | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }