/** * forked from https://github.com/EOSIO/eosjs/blob/master/src/eosjs-key-conversions.ts * * rewrite curves */ import { KeyType } from "./eosjs-numeric"; export { PrivateKey } from "./PrivateKey"; export { PublicKey } from "./PublicKey"; export { Signature } from "./Signature"; import { CurveFn } from "@noble/curves/abstract/weierstrass.js"; /** Construct the elliptic curve object based on key type */ export declare const constructElliptic: (type: KeyType) => CurveFn;