import { Arguments, Argv } from 'yargs';
export declare const command = "walletdeposit <currency>";
export declare const describe = "gets an address to deposit funds to xud";
export declare const builder: (argv: Argv) => Argv<{
    currency: string | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;
