import Account from '../Account';
import { IDelegatorTx, IUnbondDelegatorTx } from '../types/common';
export declare function signDelegatorTxMsg(oMsg: {
    account: Account;
    tx: IDelegatorTx;
    chainid: string;
    maxGas: number;
    nonce: number;
}): any;
export declare function signUnbondDelegatorTxMsg(oMsg: {
    account: Account;
    tx: IUnbondDelegatorTx;
    chainid: string;
    maxGas: number;
    nonce: number;
}): any;
