import { LoggingLevelType } from '../logger/Logger';
import { TelemetryLevelType } from '../metrics/MetricsConfiguration';
export default class BuildFeatures {
    private static _sendLocalCandidates;
    private static _sendLogs;
    private static _sendMetrics;
    private static _logToConsole;
    static get sendLocalCandidates(): boolean;
    static get sendLogs(): LoggingLevelType;
    static get sendMetrics(): TelemetryLevelType;
    static get logToConsole(): LoggingLevelType;
    static applyFeatures(): void;
}
