/// import type { OutputFormat, Output, SingleInput, AnyInput } from './types' import type { HmacType } from './utils/assertHash' export type { HmacType } from './utils/assertHash' export function hmac( type: HmacType, secret: SingleInput, data: AnyInput, form?: F ): Promise> export function hmacSync( type: HmacType, secret: SingleInput, data: AnyInput, form?: F ): Output