import type { LoopStartOptions, LoopUpdatePatch } from "./domain.js"; export type LoopCommand = { command: "start"; options: LoopStartOptions; } | { command: "update"; patch: LoopUpdatePatch; } | { command: "status" | "pause" | "resume" | "stop"; }; export declare function parseLoopCommand(raw: string): LoopCommand;