import { TxMsg } from "./tx-msg";
/**
 * Model representing a MsgNodeStake to unstake as an Node in the Pocket Network
 */
export declare class MsgNodeUnstake extends TxMsg {
    readonly AMINO_KEY: string;
    readonly nodeAddress: string;
    /**
     * @param {string} nodeAddress - Node address
     */
    constructor(nodeAddress: string);
    /**
     * Converts an Msg Object to StdSignDoc
     * @returns {object} - Msg type key value.
     * @memberof MsgNodeUnstake
     */
    toStdSignDocMsgObj(): object;
    /**
     * Converts an Msg Object to StdTx
     * @returns {any} - Msg type key value.
     * @memberof MsgNodeUnstake
     */
    toStdTxMsgObj(): any;
}
