export interface ToastMsg { title?: string; msg: string; type?: string; } interface UtilState { toasts: ToastMsg[]; addToast: (msg: string, title?: string, type?: string) => void; removeToast: (msg: string) => void; } export declare const useUtilState: import("zustand").UseBoundStore, "setState"> & { setState(partial: UtilState | Partial | ((state: UtilState) => UtilState | Partial), replace?: boolean, action?: A): void; }>; export {};