import { Arguments, Argv } from 'yargs';
export declare const command = "walletwithdraw <amount> <currency> <destination> [fee]";
export declare const describe = "withdraws on-chain funds from xud";
export declare const builder: (argv: Argv) => Argv<{
    amount: string | undefined;
} & {
    currency: string | undefined;
} & {
    destination: string | undefined;
} & {
    fee: number | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;
