import { GoogleAnalyticService } from './google-analytic.service';
import type { DateRangeKey } from './helpers/analytics-date.helper';
interface Tenant {
    subdomain: string;
}
export declare class GoogleAnalyticController {
    private readonly googleAnalyticService;
    constructor(googleAnalyticService: GoogleAnalyticService);
    overview(range: DateRangeKey, tenant: Tenant): Promise<any>;
    mapData(tenant: Tenant, propertyId: string, startDate?: string, endDate?: string): Promise<any>;
    dataCountItem(): Promise<any>;
}
export {};
