import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { ILocation } from "./interfaces/ILocation"; export declare class LocationModel extends Model implements ILocation { static readonly TABLE_NAME = "eno_umisteni"; gid: string; gid_typ: "budova" | "stavba"; poradi: number; zdroj: string; id_parcela_orig: number; hlavni_parcela_umisteni: boolean; popis_umisteni: string; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }