import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IStructureTypeLookup } from "./interfaces/IStructureTypeLookup"; export declare class StructureTypeModel extends Model implements IStructureTypeLookup { static readonly TABLE_NAME = "eno_ciselnik_druh_stavba"; aktivni: boolean; guid: string; id: number; kod: string; kod_typ: string; nazev: string; platnost_od: Date | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }