import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IOrganizationLookup } from "./interfaces/IOrganizationLookup"; export declare class OrganizationLookupModel extends Model implements IOrganizationLookup { static readonly TABLE_NAME = "eno_ciselnik_organizace"; id: number; aktivni: boolean; id_maj_spravce_ucet_jednotka: number; id_nadrazena: number; kod: string; platnost_od: Date | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }