export class MuxedAccount {
    static fromAddress(mAddress: string, sequenceNum: string): MuxedAccount;
    constructor(baseAccount: any, id: any);
    account: any;
    _muxedXdr: xdr.MuxedAccount;
    _mAddress: string;
    _id: any;
    baseAccount(): Account;
    accountId(): string;
    id(): any;
    setId(id: any): MuxedAccount;
    sequenceNumber(): string;
    incrementSequenceNumber(): void;
    toXDRObject(): xdr.MuxedAccount;
    equals(otherMuxedAccount: any): boolean;
}
import { Account } from "./account";
