import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IEnapoGidMapping } from "./interfaces/IEnapoGidMapping"; export declare class EnapoGidMappingModel extends Model implements IEnapoGidMapping { static TABLE_NAME: string; static REPOSITORY_NAME: string; place_id: string; id_type: "ean" | "eic"; commodity: "electricity" | "gas" | "heat" | "water"; gid: string; is_first_gid: boolean; link_source: string; valid_from: string | null; valid_to: string | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }