/*! * Adapted directly from forwarded-parse at https://github.com/lpinca/forwarded-parse * which is licensed as follows: * * Copyright(c) 2015 Luigi Pinca * Copyright(c) 2023 the oak authors * MIT Licensed */ /** * Parse the `Forwarded` header field value into an array of objects. If the * value is not parsable, `undefined` is returned. * * @param value The header field value. */ export declare function parse(value: string): Record[] | undefined;