import { ZhonyaParams } from "../../config";
import { ChampionsDto } from "./types";
export declare class ChampionService {
    private readonly httpClient;
    private readonly config;
    constructor(config: ZhonyaParams);
    getAllChampions(params?: {
        language?: string;
    }): Promise<ChampionsDto>;
}
