import { ActuatorResource } from '../domain';
import { EndPointService } from '../service/EndPointService';
export declare class ProcessResource implements ActuatorResource {
    prefix: string;
    endPointService: EndPointService;
    constructor(endPointService: any);
    route(router: any): void;
}