/**
 * Parent class to all Msg to be sent over inside Transactions
 */
export declare abstract class TxMsg {
    abstract toStdSignDocMsgObj(): object;
    abstract toStdTxMsgObj(): any;
}
