import { IEnapoCustomFields, IEnapoMetadata } from "../../datasources/interfaces/enapo/IEnapoMetadata"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; export declare class EnapoMetadataModel extends Model implements IEnapoMetadata { static TABLE_NAME: string; static REPOSITORY_NAME: string; static JSON_SCHEMA_VALIDATOR_NAME: string; id: string; id_type: "eic" | "ean"; source: string; address: string; location_type: string; company_name: string; company_id: string; custom_fields: Partial; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }