import type { OptionsType, TmpCookiesObj, CookieValueTypes } from '../common/types'; declare const getCookies: (_options?: OptionsType) => TmpCookiesObj | undefined; declare const getCookie: (key: string, options?: OptionsType) => CookieValueTypes; declare const setCookie: (key: string, data: any, options?: OptionsType) => void; declare const deleteCookie: (key: string, options?: OptionsType) => void; declare const hasCookie: (key: string, options?: OptionsType) => boolean; declare const revalidateCookies: (onChange: (newCookies: TmpCookiesObj | undefined) => void, previousCookies: TmpCookiesObj | undefined) => void; export { getCookies, getCookie, setCookie, deleteCookie, hasCookie, revalidateCookies };