export declare const SCHEME_DIGEST = "Digest"; export type ParseParams = { readonly scheme: string; readonly raw: string; readonly [prop: string]: string | number | undefined; }; export type GenerateParams = { readonly [prop: string]: string | number | undefined; }; export declare class Header { static parse(header: string): ReadonlyArray; static generate(digest: GenerateParams): string; protected static parseDigest(content: string): { [key: string]: string; }; }