import { AxiosInstance } from "axios"; import { AuthAPI } from "./auth"; import { DataAPI } from "./data"; import { NetworkClientProvider } from "./types"; export * from "./types"; export declare class IRacingAPI extends NetworkClientProvider { private _auth; get auth(): AuthAPI; private _data; get data(): DataAPI; /** * Initializes an IRacingAPI instance, using the provided client. * @param client The Axios client to use for requests */ constructor(client: AxiosInstance); } export default IRacingAPI; //# sourceMappingURL=index.d.ts.map