type State = { href: string | null; }; type Actions = { setHref: (href: string | null) => void; getHref: () => string | null; resetHref: () => void; }; declare const useCartCareService: import("zustand").UseBoundStore, "persist"> & { persist: { setOptions: (options: Partial>) => void; clearStorage: () => void; rehydrate: () => void | Promise; hasHydrated: () => boolean; onHydrate: (fn: (state: State & Actions) => void) => () => void; onFinishHydration: (fn: (state: State & Actions) => void) => () => void; getOptions: () => Partial>; }; }>; export { useCartCareService };