import { Hash, type Input } from './utils.js'; export type CHash = ReturnType; export declare function wrapConstructorWithKey>(hashCons: (key: Input) => Hash): { (msg: Input, key: Input): Uint8Array; outputLen: number; blockLen: number; create(key: Input): Hash; }; /** Poly1305 MAC from RFC 8439. */ export declare const poly1305: CHash; //# sourceMappingURL=_poly1305.d.ts.map