import Dockerode from "dockerode";
import { AbstractWaitStrategy } from "./wait-strategy";
export declare class HealthCheckWaitStrategy extends AbstractWaitStrategy {
    waitUntilReady(container: Dockerode.Container): Promise<void>;
}
