import { IAddress } from "./interfaces/IAddress";
import { IParkingLocation } from "./interfaces/IParkingLocation";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IGeoCoordinatesPoint, TGeoCoordinates } from "@golemio/core/dist/output-gateway/Geo";
export declare class ParkingLocationsModel extends Model<ParkingLocationsModel> implements IParkingLocation {
    static tableName: string;
    id: string;
    source: string;
    source_id: string;
    data_provider: string;
    location: TGeoCoordinates;
    centroid: IGeoCoordinatesPoint | null;
    address: IAddress | null;
    total_spot_number: number | null;
    special_access: string[];
    active: boolean;
    static attributeModel: ModelAttributes<ParkingLocationsModel>;
    static attributeList: string[];
}
