import { AxiosRequestConfig } from '../../types/axios'; import { CookieJar } from 'tough-cookie'; import { IPropertyKey } from 'reflect-metadata-util'; import { ICookiesValueInput, LazyCookieJar } from 'lazy-cookies'; export declare function CookieJarSupport(value: AxiosRequestConfig["jar"] | CookieJar): (target: any, propertyName?: IPropertyKey) => void; export declare function SetCookies(data: ICookiesValueInput, url?: string | URL): (target: any, propertyName?: IPropertyKey) => void; export declare function getCookieJar(target: any, propertyName?: IPropertyKey): LazyCookieJar; export default CookieJarSupport;