type StoreActions = { setSearchTerm: (val: string) => void; setReplaceTerm: (val: string) => void; setShowReplacePopover: (val: boolean) => void; toggleShowReplacePopover: () => void; }; type Store = { showSearchReplacePopover: boolean; searchTerm: string; replaceTerm: string; actions: StoreActions; }; export declare const useSearchReplaceStore: import('zustand').UseBoundStore>; export {};