export type GenerateDailyReportRequest = { date?: string | null; }; export type GenerateDailyReportResponse = { reportId: string; content: string; artifactCount: number; tokensUsed?: number | null; }; export type GenerateUserReportRequest = { userEmail: string; }; export type GenerateUserReportResponse = { content: string; artifactCount: number; tokensUsed?: number | null; firstActivityDate?: string | null; lastActivityDate?: string | null; }; export type TrackEventRequest = { clientId: string; userId?: string | null; eventName: string; eventParams?: Record | null; }; export type TrackEventResponse = { success: boolean; }; export declare const analyticsApi: { trackEvent: (args: TrackEventRequest) => Promise; }; //# sourceMappingURL=analytics.d.ts.map