import { ConfigService } from '@nestjs/config';
export declare class ZoomAnalyticsConfigService {
    private readonly configService;
    constructor(configService: ConfigService);
    isEnabled(): boolean;
    isLivePollEnabled(): boolean;
    getWebhookSecret(): string;
    getLateJoinThresholdSeconds(): number;
}
