import { listTraceSources, type TraceSourceListItem } from "@mono-agent/observability"; export interface RunJobsCommandOptions { 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 operator client for one discovered live agent. */ export declare function runJobsCommand(options: RunJobsCommandOptions): Promise; export declare function discoverJobsSource(options: Pick): Promise; //# sourceMappingURL=jobs-command.d.ts.map