import type { BehaviorDashboardStats, CostDashboardStats, DashboardStats, MessageStats, ModelDashboardStats, OverviewStats, RequestDetails } from "./types"; export declare function getStats(range?: string): Promise; export declare function getOverviewStats(range?: string): Promise; export declare function getModelDashboardStats(range?: string): Promise; export declare function getCostDashboardStats(range?: string): Promise; export declare function getRecentRequests(limit?: number): Promise; export declare function getRecentErrors(limit?: number): Promise; export declare function getRequestDetails(id: number): Promise; export declare function sync(): Promise; export declare function getBehaviorDashboardStats(range?: string): Promise;