import { listTraceSources } from "@mono-agent/observability"; export interface RunMonitorsCommandOptions { readonly cwd: string; readonly configPath: string; readonly env: Record; readonly positionals: readonly string[]; readonly agent?: string; readonly json?: boolean; readonly fetchImpl?: typeof fetch; readonly listSources?: typeof listTraceSources; readonly stdout?: (text: string) => void; readonly stderr?: (text: string) => void; } /** * Authenticated, loopback-only monitor operator client for one live agent. * * Deliberately a separate command rather than a `--kind` flag on `jobs`: a * monitor and a background job share a state root but nothing else — different * states, different counters, different bearer — and one command that renders * two unrelated projections reads worse than two that each render one. */ export declare function runMonitorsCommand(options: RunMonitorsCommandOptions): Promise; //# sourceMappingURL=monitors-command.d.ts.map