import { type StoreApi } from 'zustand'; /** * @internal */ export type AppStateStore = { data: Record; isLoading: boolean; error: Error | null; onError?: (error: Error) => void; }; /** * @internal */ export declare function createAppStateStore(): StoreApi; //# sourceMappingURL=app-state-store.d.ts.map