import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IPpasCommercialInvoiceDevice } from "./interfaces/IPpasCommercialInvoiceDevice"; export declare class PpasCommercialInvoiceDeviceModel extends Model implements IPpasCommercialInvoiceDevice { 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 | null; 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: object; }