import type { Driver } from "../driver/Driver.js"; export interface AppInfo { driverVersion: string; applicationName: string; applicationVersion: string; nodeVersion: string; os: NodeJS.Platform; arch: string; } export declare function compileStatistics(driver: Driver, appInfo: AppInfo): Promise>; /** * Sends the statistics to the statistics backend. Returns: * - `true` when sending succeeded * - The number of seconds to wait before trying again when hitting the rate limiter * - `false` for any other errors */ export declare function sendStatistics(statistics: Record): Promise; //# sourceMappingURL=statistics.d.ts.map