/** * @template T * @param {{ * curve: CurveWithFromToAffine * }} args * @returns {Schnorr} */ export function makeSchnorr(args: { curve: CurveWithFromToAffine; }): Schnorr; /** * @type {Schnorr} */ export const SchnorrSecp256k1: Schnorr; export type SchnorrHashTag = "BIP0340/aux" | "BIP0340/challenge" | "BIP0340/nonce"; import type { CurveWithFromToAffine } from "../../internal.js"; import type { Schnorr } from "../../index.js"; //# sourceMappingURL=Schnorr.d.ts.map