import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { GTFSTransferTypeEnum } from "../enums/TransferTypeEnum";
import { ITransferDto } from "../interfaces/ITransferDto";
export declare class TransferDto extends Model<ITransferDto> implements ITransferDto {
    from_stop_id: string | null;
    to_stop_id: string | null;
    from_trip_id: string | null;
    to_trip_id: string | null;
    transfer_type: GTFSTransferTypeEnum;
    min_transfer_time: number | null;
    max_waiting_time: number | null;
    static attributeModel: ModelAttributes<TransferDto>;
    static jsonSchema: JSONSchemaType<ITransferDto[]>;
}
