import { Arguments, Argv } from 'yargs';
export declare const command = "addcurrency <currency> <swap_client> [decimal_places] [token_address]";
export declare const describe = "add a currency";
export declare const builder: (argv: Argv) => Argv<{
    currency: string | undefined;
} & {
    swap_client: string | undefined;
} & {
    decimal_places: number;
} & {
    token_address: string | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;
