import { Command } from "commander"; import type { CommandOptions, OutputSchema, ListResult } from "../../output/index.js"; interface LoopListRow { id: string; name: string | null; status: string; cwd: string; updated: string; activeIteration: string; } export interface LoopLsOptions extends CommandOptions { } export declare const loopLsSchema: OutputSchema; export declare function addLoopLsOptions(command: Command): Command; export type LoopLsResult = ListResult; export declare function runLoopLsCommand(options: LoopLsOptions, _command: Command): Promise; export {}; //# sourceMappingURL=ls.d.ts.map