import * as v from 'valibot'; import type { CryptoContext } from './c-crypto.js'; export declare const vDigestAlgorithm: v.PicklistSchema<["sha256", "sha384", "sha512"], undefined>; export type DigestAlgorithm = v.InferOutput; export declare const digest: (input: { algorithm: DigestAlgorithm; data: Uint8Array; }, _ctx?: CryptoContext) => Promise; //# sourceMappingURL=digest.d.ts.map