import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IEnoPorsennaDeviceView } from "./interfaces/IEnoPorsennaDeviceView"; export declare class EnoPorsennaDeviceViewModel extends Model implements IEnoPorsennaDeviceView { static tableName: string; static modelName: string; gid: string; source: string; device_id: string; parent_device_id: string | null; identifier: string | null; type: string | null; level: string | null; name: string | null; measurement_target: string | null; meter_number: string | null; supply_point_number: string | null; disabled_at: Date | null; show_in_output: boolean | null; building_id: number; building_name: string | null; building_street: string | null; building_house_number: string | null; building_street_number: string | null; building_city: string | null; building_postcode: string | null; static attributeModel: ModelAttributes; }