import { Content } from "../types/global";
import Cookie from "../classes/Cookie";
/**
 * Generate a Hash from a Body, Headers & Status Code to be used for caching using SHA1
 * @since 6.0.0
*/ export default function toETag(data: ArrayBuffer, headers: Record<string, Content>, cookies: Record<string, Cookie>, status: number): `W/"${string}-${string}"` | null;
