import { HttpRequestDto } from '../../../common/dtos';
/**
 * GetTranslationsRequest class for sending request
 * to get translations from the API. It contains the
 * properties for the request to get translations
 * from the API.
 * @param sportIds The sport IDs to filter the
 * translations by in the request to get translations
 * from the API. The sport IDs are used to
 * @param locationIds The location IDs to filter the
 * translations by in the request to get translations
 * from the API.
 * @param leagueIds The league IDs to filter the
 * translations by in the request to get translations
 * from the API.
 * @param marketIds The market IDs to filter the
 * translations by in the request to get translations
 * from the API.
 * @param participantIds The participant IDs to filter
 * the translations by in the request to get translations
 *  from the API.
 * @param languages The language IDs to filter the
 * translations by in the request to get translations
 * from the API.
 * @returns GetTranslationsRequest instance that contains
 * the properties for the request to get translations
 * from the API.
 */
export declare class GetTranslationsRequest extends HttpRequestDto {
    sportIds?: number[];
    locationIds?: number[];
    leagueIds?: number[];
    marketIds?: number[];
    participantIds?: number[];
    languages?: number[];
}
