import React from 'react'; export interface RootRefProps { rootRef: React.Ref; children: React.ReactElement; } /** * Helper component to allow attaching a ref to a * wrapped element to access the underlying DOM element. * * From Material's UI RootRef component */ export declare class RootRef extends React.Component> { private ref; componentDidMount(): void; componentDidUpdate(prevProps: any): void; componentWillUnmount(): void; render(): React.ReactElement> & React.ReactNode; }