import type { CurveFn } from '@noble/curves/abstract/weierstrass'; import type { GroupParams, HashToPointFunc } from './types.js'; import type { HashID } from '../cryptoTypes.js'; export interface MakeShortParamsArgs { curve: CurveFn; hashID: HashID; elementHash: HashToPointFunc; securityBits: number; } export declare function shortCurve({ hashID, curve, elementHash, securityBits }: MakeShortParamsArgs): GroupParams; //# sourceMappingURL=short.d.ts.map