export declare const getItem: (key: string) => string; export declare const setItem: (key: string, value: string, numberOfDays: number) => void; /** * * @param {String} key The key to store our data to * @param {String} defaultValue The default value to return in case the cookie doesn't exist */ declare const useCookie: (key: string, defaultValue: string) => (string | ((value: string, numberOfDays: number) => void))[]; export default useCookie; //# sourceMappingURL=useCookie.d.ts.map