export declare const useServerErrorStore: import("zustand").UseBoundStore<import("zustand").StoreApi<{
    error: string | null;
    setError: (msg: string | null) => void;
}>>;
