/** Parse [list-based fields](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.5-7) into array. * Strings enclosed in double quotes are safely handled. * * @example * ```ts * import { parseListFields } from "https://deno.land/x/http_utils@$VERSION/list.ts"; * import { assertEquals } from "https://deno.land/std@$VERSION/testing/asserts.ts"; * * assertEquals(parseListFields("foo , ,bar,charlie"), [ * "foo", * "bar", * "charlie", * ]); * assertEquals(parseListFields(`"Sat, 04 May 1996", "Wed, 14 Sep 2005"`), [ * `"Sat, 04 May 1996"`, * `"Wed, 14 Sep 2005"`, * ]); * ``` */ export declare function parseListFields(input: string): string[];