interface IPersonalViewState { personalViewMap: Record>; isPersonalView: (viewId: string) => boolean; setPersonalViewMap: (viewId: string, updater: (prev: Record) => Record) => void; removePersonalView: (viewId: string) => void; } export declare const usePersonalViewStore: import("zustand").UseBoundStore, "persist"> & { persist: { setOptions: (options: Partial>) => void; clearStorage: () => void; rehydrate: () => void | Promise; hasHydrated: () => boolean; onHydrate: (fn: (state: IPersonalViewState) => void) => () => void; onFinishHydration: (fn: (state: IPersonalViewState) => void) => () => void; getOptions: () => Partial>; }; }>; export {};