import type { HttpClient } from './http-client.js'; import type { Statistics, UserInfo } from '../types/index.js'; /** * Service for statistics and user info */ export declare class StatsService { private readonly http; constructor(http: HttpClient); /** * Get user information */ getUserInfo(): Promise; /** * Get unread counts and statistics */ getStatistics(): Promise; } //# sourceMappingURL=stats-service.d.ts.map