import * as Effect from "effect/Effect"; import { Command } from "effect/unstable/cli"; import { Screen } from "../../screen/index.js"; import * as Schema from "effect/Schema"; export declare const LogoutResultSchema: Schema.Struct<{ readonly status: Schema.Literals; readonly registryHost: Schema.String; readonly handle: Schema.optional; }>; export declare const LogoutDocumentSchema: Schema.Struct<{ result: Schema.Struct<{ readonly status: Schema.Literals; readonly registryHost: Schema.String; readonly handle: Schema.optional; }>; }>; export type LogoutResult = typeof LogoutResultSchema.Type; export type LogoutDocument = typeof LogoutDocumentSchema.Type; export declare const handleLogout: () => Effect.Effect; export declare const logoutCommand: Command.Command<"logout", {}, {}, 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=logout.d.ts.map