export interface IDeparturesPresetOutputDto {
    route_name: string;
    note: string;
    is_testing: boolean;
    stops: string[] | [];
}
