/**
 * Easymode command - Clipanion implementation
 *
 * This provides a complete interactive setup flow that walks new users
 * through configuring their first AI provider with a delightful UX.
 */
import { Command } from "clipanion";
import { type SupportedProvider } from "../auth/keyring-manager.js";
export declare class EasymodeCommand extends Command {
    static paths: string[][];
    static usage: import("clipanion").Usage;
    provider: string | undefined;
    skipTest: boolean;
    execute(): Promise<number>;
}
declare module "../ui/interactive.js" {
    namespace InteractiveUI {
        function showExistingSetupInfo(providers: SupportedProvider[]): void;
    }
}
//# sourceMappingURL=easymode-clipanion.d.ts.map