import * as React from 'react'; type RefUpdate = (ref: HTMLElement) => void; type BaseProps = { init: RefUpdate; unmount: RefUpdate; } & Record; /** * Component for rendering various elements embedded in the React.js component tree. */ export declare function RefComponent({ init, unmount, ...props }: Props): React.JSX.Element; export {}; //# sourceMappingURL=ref-component.d.ts.map