import BN from "bn.js";
import Weierstrass from "./curve";
import NistPoint from "./point";
import NistScalar from "./scalar";
declare const _default: {
    Curve: typeof Weierstrass;
    Params: {
        p256: {
            name: string;
            bitSize: number;
            p: BN;
            a: BN;
            b: BN;
            n: BN;
            gx: BN;
            gy: BN;
        };
    };
    Point: typeof NistPoint;
    Scalar: typeof NistScalar;
};
export default _default;
