import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { IBuildings } from "./interfaces/IBuildings"; export declare class PorsennaBuildingsModel extends Model implements IBuildings { static TABLE_NAME: string; static REPOSITORY_NAME: string; static JSON_SCHEMA_VALIDATOR_NAME: string; source: string; id: number; name: string | null; street: string | null; house_number: string | null; street_number: string | null; city: string | null; postcode: string | null; gid: string | null; created_at: Date; updated_at: Date | null; static attributeModel: ModelAttributes; static jsonSchema: JSONSchemaType; }