import type { DevToolsProtocol } from "./types/HttpArchiveFormat.ts"; import { Cookie } from "tough-cookie"; import type { Har } from "./types/"; export declare const networkCookieToHarFormatCookie: ({ expires, ...rest }: DevToolsProtocol.Network.Cookie) => Har.Cookie; export declare const toughCookieObjectToHarFormatCookie: ({ value, expires, httpOnly, secure, ...toughCookie }: Cookie) => Har.Cookie; export declare function parseCookie(cookieString: string): Har.Cookie | undefined; export declare const parseRequestCookies: (header: string) => Har.Cookie[]; export declare const parseResponseCookies: (header: string) => Har.Cookie[];