import { Command } from "commander"; import type { CommandOptions, OutputSchema, SingleResult } from "../../output/index.js"; interface LoopStopRow { id: string; status: string; activeIteration: string; } export interface LoopStopOptions extends CommandOptions { } export declare const loopStopSchema: OutputSchema; export declare function addLoopStopOptions(command: Command): Command; export type LoopStopResult = SingleResult; export declare function runLoopStopCommand(id: string, options: LoopStopOptions, _command: Command): Promise; export {}; //# sourceMappingURL=stop.d.ts.map