import type { Command } from "commander"; import { type TargetConfig } from "../index.js"; declare function runWatchOneShot(target: TargetConfig, outDir: string, options: { format: string; failOnRegression: boolean; }): Promise; declare function runWatchMode(target: TargetConfig, outDir: string, intervalSeconds: number): Promise; export { runWatchMode, runWatchOneShot }; export declare function registerWatchCommands(program: Command): void;