import { ProjPointType } from '@noble/curves/abstract/weierstrass'; import { SerializedBlindedSignature } from './types/index.js'; declare class BlindedSignature { id: string; amount: number; C_: ProjPointType; constructor(id: string, amount: number, C_: ProjPointType); getSerializedBlindedSignature(): SerializedBlindedSignature; } export { BlindedSignature };