import { Point } from './point';
import { RangeProof } from './rangeProof';
export declare class AmountRecoveryReq {
    rangeProof: RangeProof;
    nonce: Point;
    constructor(rangeProof: RangeProof, nonce: Point);
    toString(): string;
    serialize(): string;
    static deserialize(hex: string): AmountRecoveryReq;
}
