import { Command } from "commander";
import { ExpertCommandOptions } from "./index.js";
/**
 * Options for the all experts command
 */
interface AllExpertsCommandOptions extends ExpertCommandOptions {
    debug?: boolean;
    interval?: number;
    startDelay?: number;
}
/**
 * Run all enabled experts from the database
 *
 * @param options Command options
 */
export declare function runAllExperts(options: AllExpertsCommandOptions): Promise<void>;
/**
 * Register the all experts command with the CLI
 *
 * @param program The commander program or parent command
 */
export declare function registerAllCommand(program: Command): void;
export {};
