import { Currency, SearchLocale } from "../types";
export interface SearchMultiCityParamsDto {
    locale?: SearchLocale;
    curr?: Currency;
}
export interface SearchMultiCityBodyDto {
    requests: SearchMultiCityBodyDtoRequest[];
}
export interface SearchMultiCityBodyDtoRequest {
    /**
     * IATA code of the destination
     */
    to: string;
    /**
     * IATA code of origin
     */
    fly_from: string;
    /**
     * search for flights from this date
     */
    dateFrom: string | Date;
    /**
     * search for flights upto this date
     */
    dateTo: string | Date;
}
//# sourceMappingURL=search-multicity.dto.d.ts.map