import type { Analytics } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type DashboardAnalyticsInput = { houseId: string; }; declare const getDashboardAnalytics: (http: HttpClient) => { query: (input: DashboardAnalyticsInput) => Promise>; }; export default getDashboardAnalytics;