import { RefCallback, RefObject } from 'react'; /** * Create an observable ref. * * The object returned by this function supports the * API returned by React.createRef(), but the `current` * property is a MobX observable value. * * This object *also* supports the legacy callback Ref API * * https://reactjs.org/docs/refs-and-the-dom.html */ export declare function createObservableRef(): RefObject & RefCallback;