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