import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IGeometry } from "./interfaces/IGeometry"; export declare class GeometryModel extends Model implements IGeometry { static readonly TABLE_NAME = "eno_geometrie"; gid: string; zdroj: string; poradi: number; id_organizace: number; uzivatelsky_zakres: boolean; zakres: string; epsg_code: string | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }