/** With a provided attribute pattern, return a RegExp which will match and * capture in the first group the value of the attribute from a header value. */ export declare function toParamRegExp(attributePattern: string, flags?: string): RegExp; /** Unquotes attribute values that might be pass as part of a header. */ export declare function unquote(value: string): string;