import type { OptionsType, TmpCookiesObj, CookieValueTypes } from '../common/types'; declare const getCookies: (options?: OptionsType) => Promise; declare const getCookie: (key: string, options?: OptionsType) => Promise; declare const setCookie: (key: string, data: any, options?: OptionsType) => Promise; declare const deleteCookie: (key: string, options?: OptionsType) => Promise; declare const hasCookie: (key: string, options?: OptionsType) => Promise; export * from '../common/types'; export { getCookies, getCookie, setCookie, deleteCookie, hasCookie };