import { OptionsType } from "cookies-next/lib/types"; import { PersistKey } from "../../constants"; declare const cookieStorage: { init(options: OptionsType): void; setItem(key: keyof typeof PersistKey, data: T): void; getItem(key: keyof typeof PersistKey): string | undefined; removeItem(key: keyof typeof PersistKey): void; clear(): void; }; export { cookieStorage }; //# sourceMappingURL=index.d.ts.map