import type { Response } from 'express';
import type { OpenApiService } from '../../services/index.js';
import type { IAuthRequest } from '../unleash-types.js';
import type { IUnleashConfig } from '../../types/option.js';
import Controller from '../controller.js';
import type { IUnleashServices } from '../../services/index.js';
import { type TelemetrySettingsSchema } from '../../openapi/spec/telemetry-settings-schema.js';
declare class TelemetryController extends Controller {
    openApiService: OpenApiService;
    constructor(config: IUnleashConfig, { openApiService }: Pick<IUnleashServices, 'openApiService'>);
    getTelemetrySettings(_req: IAuthRequest, res: Response<TelemetrySettingsSchema>): Promise<void>;
}
export default TelemetryController;
//# sourceMappingURL=telemetry.d.ts.map