import { ConfigService } from '@nestjs/config';
import { ZoomOAuthService } from './zoom-oauth.service';
export declare class ZoomAnalyticsHttpUtil {
    private readonly oauthService;
    private readonly configService;
    constructor(oauthService: ZoomOAuthService, configService: ConfigService);
    get<T>(path: string, params?: Record<string, unknown>): Promise<T>;
    private execute;
}
