import { SerializedBlindedMessage } from './types/index';
import { ProjPointType } from '@noble/curves/abstract/weierstrass';
declare class BlindedMessage {
    amount: number;
    B_: ProjPointType<bigint>;
    id: string;
    constructor(amount: number, B_: ProjPointType<bigint>, id: string);
    getSerializedBlindedMessage(): SerializedBlindedMessage;
}
export { BlindedMessage };
