import { Command, Interfaces } from '@oclif/core';
export declare abstract class HealthCheck extends Command {
    static flags: {
        healthCheck: Interfaces.BooleanFlag<boolean>;
        healthCheckPort: Interfaces.OptionFlag<number | undefined>;
    };
    init(): Promise<void>;
}
