import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IAddress } from "./interfaces/IAddress"; export declare class AddressModel extends Model implements IAddress { static readonly TABLE_NAME = "eno_adresa"; gid: string; gid_typ: "budova" | "stavba"; poradi: number; zdroj: string; id: number; popis: string; hlavni: boolean; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }