import { ReactComponent } from './typings/index'; /** * Retrieves the name of a given React component. * @param {React.Component} Component A React component. * @returns {string} The name of the React component. */ declare function getComponentName(Component: ReactComponent): string; export default getComponentName;