import * as Effect from "effect/Effect"; import { Command } from "effect/unstable/cli"; /** The types whose native content this route converts. */ type NativeImportRouteType = "skill" | "subagent"; interface ImportHandlerArgs { readonly type: NativeImportRouteType; readonly source: string; readonly target: string; readonly enable: boolean; readonly preview: boolean; } export declare const handleImport: (args: ImportHandlerArgs) => Effect.Effect; export declare const skillsImportCommand: Command.Command<"import", { readonly source: string; readonly target: string; readonly enable: boolean; readonly preview: 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">; export declare const subagentsImportCommand: Command.Command<"import", { readonly source: string; readonly target: string; readonly enable: boolean; readonly preview: 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">; export {}; //# sourceMappingURL=command.d.ts.map