import { LoggingConfig } from "@decaf-ts/logging";
import { Command } from "../command.d.cts";
import { DefaultCommandValues } from "../constants.d.cts";
declare const options: {
    basePath: {
        type: string;
        default: string;
    };
    command: {
        type: string;
        default: undefined;
    };
};
export declare class RunAllCommand extends Command<typeof options, void> {
    constructor();
    protected help(): void;
    protected run(answers: LoggingConfig & typeof DefaultCommandValues & {
        basePath: unknown;
        command: unknown;
    }): Promise<void>;
}
export {};
