import { MLBClient } from "./mlb"; import { NBAClient } from "./nba"; import { NFLClient } from "./nfl"; import { ClientConfig } from "./types"; export * from "./types"; export declare class BalldontlieAPI { readonly nba: NBAClient; readonly nfl: NFLClient; readonly mlb: MLBClient; constructor(config: ClientConfig); }