import { Command } from "effect/unstable/cli"; import * as Effect from "effect/Effect"; import { Screen } from "../../screen/index.js"; export interface AgentsListArgs { readonly detected: boolean; readonly available: boolean; } /** * The name this command's machine document is registered under in * `machine-output-contracts.ts`. The document itself is the configuration * feature's typed inventory; the registry names it, so the name stays. */ export declare const AgentsListOutputSchema: import("effect/Schema").Struct<{ readonly items: import("effect/Schema").$Array>; readonly configured: import("effect/Schema").$Array; readonly detected: import("effect/Schema").$Array; readonly available: import("effect/Schema").$Array; readonly count: import("effect/Schema").Number; }>; export declare const handleAgentsList: (args: AgentsListArgs) => Effect.Effect; export declare const listCommand: Command.Command<"list", { readonly scope: "user" | "project"; readonly detected: boolean; readonly available: boolean; }, {}, import("../../app-error/app-error.ts").AppError, import("effect/FileSystem").FileSystem | import("effect/Path").Path | "effect/unstable/cli/GlobalFlag/axm-non-interactive" | "effect/unstable/cli/GlobalFlag/axm-json" | "effect/unstable/cli/GlobalFlag/axm-quiet" | "effect/unstable/cli/GlobalFlag/axm-verbose" | "effect/unstable/cli/GlobalFlag/axm-debug" | import("@agentxm/registry-access/authentication").DeviceLoginInteraction | "effect/unstable/cli/GlobalFlag/axm-directory">; //# sourceMappingURL=list.d.ts.map