import { Response } from 'express';
import { ProbesService } from './probes.service';
import { ProbeType } from './types';
export declare class ProbeController {
    private readonly probesService;
    constructor(probesService: ProbesService);
    checkProbe(probeName: ProbeType, res: Response): Promise<void>;
}
