import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IStopComputedDto, IStopDto } from "../interfaces/IStopDto";
export declare class StopDto extends Model<IStopDto & IStopComputedDto> implements IStopDto {
    stop_id: string;
    level_id: string;
    location_type: number;
    parent_station: string;
    platform_code: string;
    stop_code: string;
    stop_desc: string;
    stop_lat: number;
    stop_lon: number;
    stop_name: string;
    stop_timezone: string;
    stop_url: string;
    wheelchair_boarding: number;
    zone_id: string;
    asw_node_id: number;
    asw_stop_id: number;
    computed_cis_stop_id: string | null;
    static attributeModel: ModelAttributes<StopDto>;
    static jsonSchema: JSONSchemaType<IStopDto[]>;
}
