import { MsgSend } from '../../../../proto/cosmos/bank/v1beta1/tx_pb';
import { ReadableMessageNames } from 'types';
/**
 * Formats MsgSend (bank) messages for display
 * @param message of type MsgSend (bank)
 * @returns object with MsgSend fields
 */
export declare const msgSend: (message: MsgSend) => {
    fromAddress: string;
    toAddress: string;
    amountList: import("../../../../proto/cosmos/base/v1beta1/coin_pb").Coin.AsObject[];
    typeName: ReadableMessageNames;
};
