export declare class AmountRecoveryRes {
    isSucc: boolean;
    amount: number;
    msg: string;
    constructor(isSucc: boolean, amount: number, msg: string);
    toString(): string;
    serialize(): string;
    deserialize(hex: string): AmountRecoveryRes;
}
