import { certificatesReport } from './certificates-report'; import { occupancyReport } from './occupancy-report'; import { ordersReport } from './orders-report'; import { promocodesReport } from './promocodes-report'; import { revenue } from './revenue'; import { surveysAnswers } from './surveys-answers'; import { surveysReport } from './surveys-report'; type ApiDeclaration = { ordersReport: typeof ordersReport; revenue: typeof revenue; certificatesReport: typeof certificatesReport; promocodesReport: typeof promocodesReport; occupancyReport: typeof occupancyReport; surveysReport: typeof surveysReport; surveysAnswers: typeof surveysAnswers; }; export declare const statisticsApiDeclaration: ApiDeclaration; export {};