export interface RiotConfigResponse {
    'chat.affinities': {
        [key: string]: string;
    };
    'chat.affinity_domains': {
        [key: string]: string;
    };
}
export declare function getRiotClientConfig(token: string, entitlement: string): Promise<RiotConfigResponse>;
