import { DriverStanding, ConstructorStanding, DriverWinners, ConstructorWinners } from "../../types/standings/index.js"; declare const standings: { getDriverStandingsByYearRace: (year: number, round: number) => Promise; getDriverStandingsByYear: (year: number) => Promise; getConstructorStandingsByYearRace: (year: number, round: number) => Promise; getConstructorStandingsByYear: (year: number) => Promise; getCurrentDriverStanding: () => Promise; getCurrentConstructorStanding: () => Promise; getAllChampionshipDriverWinners: () => Promise; getAllChampionshipConstructorWinners: () => Promise; getStandingsByDriver: (driverId: string) => Promise; getStandingsByConstructor: (constructorId: string) => Promise; }; export default standings; //# sourceMappingURL=index.d.ts.map