import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { GTFSRouteTypeEnum } from "../../../helpers/RouteTypeEnums";
import { IRouteDto } from "../interfaces/IRouteDto";
export declare class RouteDto extends Model<IRouteDto> implements IRouteDto {
    route_id: string;
    agency_id: string;
    is_night: string;
    is_regional: string;
    is_substitute_transport: string;
    route_color: string;
    route_desc: string;
    route_long_name: string;
    route_short_name: string;
    route_text_color: string;
    route_type: GTFSRouteTypeEnum;
    route_url: string;
    static attributeModel: ModelAttributes<RouteDto>;
    static jsonSchema: JSONSchemaType<IRouteDto[]>;
}
