export interface IV4TransferDepartureOutputDto {
    departure_timestamp: {
        minutes: string[];
    };
    route: {
        short_name: string | null;
        type: number | null;
    };
    stop: {
        platform_code: string | null;
    };
    trip: {
        headsign: string;
        id: string;
        is_wheelchair_accessible: boolean | null;
        is_guaranteed_transfer: boolean;
    };
    icons: string[];
    substitution_text: {
        cs: string;
        en: string | null;
    } | null;
}
