import { ApiMethodDeclaration } from '..'; type ParamsData = { cityId: number; monthStart: string; }; type ResponseData = Array<{ id: string; day: string; visits: number; bookings: number; cancellations: number; conversion: number; cancellationRate: number; }>; export declare const getAggregatorCityDailyStatistics: ApiMethodDeclaration; export {};