import { Strategy } from './base.strategy';
import { Observable } from 'rxjs';
import { HealthCheckOptions } from '../interfaces';
export declare class HealthCheckStrategy extends Strategy<HealthCheckOptions> {
    constructor(options: HealthCheckOptions);
    process<T>(observable: Observable<T>): Observable<T>;
}
