UNPKG

@findnlink/neuro-ui

Version:
18 lines (17 loc) 467 B
declare type Store = { theme: string; setTheme: (theme: string) => void; isLoading: boolean; setIsLoading: (isLoading: boolean) => void; toasts: { children: string; id: number; }[]; addToast: (toast: { children: string; id: number; }) => void; removeToast: (id: number) => void; }; export declare const useStore: import("zustand").UseBoundStore<Store, import("zustand").StoreApi<Store>>; export {};