import { GTFSRouteTypeEnum } from "../../../../helpers/RouteTypeEnums";
import { ProviderSourceTypeEnum } from "../enums/ProviderSourceTypeEnum";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IPublicStopTimeDto } from "./interfaces/IPublicStopTimeDto";
export declare class PublicStopTimeModel extends Model<PublicStopTimeModel> implements IPublicStopTimeDto {
    static tableName: string;
    rt_trip_id: string;
    gtfs_trip_id: string;
    stop_sequence: number;
    stop_arr_delay: number | null;
    stop_dep_delay: number | null;
    gtfs_route_type: GTFSRouteTypeEnum | null;
    gtfs_route_short_name: string | null;
    run_number: number | null;
    internal_run_number: number | null;
    provider_source_type: ProviderSourceTypeEnum;
    cis_trip_number: number | null;
    vehicle_registration_number: number | null;
    cis_stop_platform_code: string | null;
    platform_code: string | null;
    stop_id: string;
    stop_name: string;
    static attributeModel: ModelAttributes<PublicStopTimeModel>;
}
