import { CookieAttributes } from 'js-cookie'; import React from 'react'; import { SetCookieFunction } from './types'; type Props = { children: React.ReactNode; }; export declare const CookieProvider: ({ children }: Props) => React.JSX.Element; export declare const useSetCookie: () => (cookieName: string, value: any, options?: CookieAttributes) => void; export declare const useCookie: (cookieName: string) => [any | undefined, SetCookieFunction]; export {};