import { Command } from "commander";
/**
 * Options for the create wallet command
 */
interface CreateWalletOptions {
    remote?: boolean;
    url?: string;
    default?: boolean;
}
/**
 * Execute the create wallet command
 *
 * @param name The name of the wallet to create
 * @param options Command line options
 * @param dbPath Path to the database file
 */
export declare function executeCreateWalletCommand(name: string, options: CreateWalletOptions): Promise<void>;
/**
 * Register the create wallet command with the CLI
 *
 * @param program The commander program
 */
export declare function registerCreateCommand(program: Command): void;
export {};
