import "./utils/assertEnvironment"; import { observerFinalizationRegistry } from "./utils/observerFinalizationRegistry"; export { isUsingStaticRendering, enableStaticRendering } from "./staticRendering"; export { observer, IObserverOptions } from "./observer"; export { Observer } from "./ObserverComponent"; export { useLocalObservable } from "./useLocalObservable"; export { useLocalStore } from "./useLocalStore"; export { useAsObservableSource } from "./useAsObservableSource"; export { observerFinalizationRegistry as _observerFinalizationRegistry }; export declare const clearTimers: any; export declare function useObserver(fn: () => T, baseComponentName?: string): T; export { isObserverBatched, observerBatching } from "./utils/observerBatching"; export declare function useStaticRendering(enable: boolean): void;