import { OptionsType, TmpCookiesObj, CookieValueTypes } from './types';
export { CookieValueTypes } from './types';
export declare const getCookies: (options?: OptionsType) => TmpCookiesObj;
export declare const getCookie: (key: string, options?: OptionsType) => CookieValueTypes;
export declare const setCookie: (key: string, data: any, options?: OptionsType) => void;
/**
 * @deprecated setCookies was deprecated. It will be deleted in the new version. Use setCookie instead.
 */
export declare const setCookies: (key: string, data: any, options?: OptionsType) => void;
export declare const deleteCookie: (key: string, options?: OptionsType) => void;
/**
 * @deprecated removeCookies was deprecated. It will be deleted in the new version. Use deleteCookie instead.
 */
export declare const removeCookies: (key: string, options?: OptionsType) => void;
export declare const hasCookie: (key: string, options?: OptionsType) => boolean;
/**
 * @deprecated checkCookies was deprecated. It will be deleted in the new version. Use hasCookie instead.
 */
export declare const checkCookies: (key: string, options?: OptionsType) => boolean;
