import URL from '../../url/URL.cjs'; import ICookie from '../types/ICookie.cjs'; /** * Cookie string. */ export default class CookieURLUtility { /** * Returns "true" if cookie matches URL. * * @param cookie Cookie. * @param url URL. * @returns "true" if cookie matches URL. */ static cookieMatchesURL(cookie: ICookie, url: URL): boolean; } //# sourceMappingURL=CookieURLUtility.d.ts.map