import { IV4InfotextTransferOutputDto } from "../domain/InfotextInterfaces";
import { IV4TransferDepartureOutputDto } from "./IV4TransferDepartureOutputDto";
export interface IV4TransferOutputDto {
    platform_code?: string | null;
    stop_name?: string | null;
    icons: string[];
    departures: IV4TransferDepartureOutputDto[];
    infotexts: IV4InfotextTransferOutputDto[];
}
