import BudCommand from '@roots/bud/cli/commands';
/**
 * bud doctor command
 */
export default class DoctorCommand extends BudCommand {
    /**
     * {@link BudCommand.paths}
     */
    static paths: string[][];
    /**
     * {@link BudCommand.usage}
     */
    static usage: import("@roots/bud-support/clipanion").Usage;
    error: Error | string;
    /**
     * Error handler override
     */
    catch(error?: Error | string): Promise<void>;
    /**
     * Silent flag override
     */
    silent: boolean;
    /**
     * Execute command
     */
    execute(): Promise<void>;
    makeTimer: () => () => string;
}
