import { UInt256 } from '@radixdlt/uint256'; import { ECPointOnCurveT } from './_types'; export declare enum CurveForm { SHORT_WEIERSTRASS = "ShortWeierstrass" } export declare type Curve = Readonly<{ name: string; form: CurveForm; order: UInt256; fieldSize: UInt256; generator: ECPointOnCurveT; }>; export declare const Secp256k1: Curve; //# sourceMappingURL=secp256k1.d.ts.map