export declare class SportradarConfigService {
    private readonly config;
    constructor(config: {
        mlb: {
            basePath: string;
            apiKey: string;
        };
        nba: {
            basePath: string;
            apiKey: string;
        };
        nfl: {
            basePath: string;
            apiKey: string;
        };
    });
    getMlbConfig(): {
        basePath: string;
        apiKey: string;
    };
    getNbaConfig(): {
        basePath: string;
        apiKey: string;
    };
    getNflConfig(): {
        basePath: string;
        apiKey: string;
    };
}
