import { Observable } from '@legendapp/state'; /** * A React hook that creates a new observable * * @param initialValue The initial value of the observable or a function that returns the initial value * * @see https://www.legendapp.com/dev/state/react/#useObservable */ export declare function useObservable(initialValue?: T | (() => T) | (() => Promise)): Observable; //# sourceMappingURL=useObservable.d.ts.map