import type { ComponentType, ComponentProps } from 'react'; /** * Sugar around React.memo to avoid the need to specify the type of the component. * @group utils */ declare const typedMemo: >(function_: Component, propsAreEqual?: (previousProps: Readonly>, nextProps: Readonly>) => boolean) => Component; /** * Sugar around React.memo to avoid the need to specify the type of the component. * @param function_ - The component to memoize. * @group Utils * @internal */ export default typedMemo;