import React from 'react'; import { ComponentType } from '../type'; export declare const wrapWithUtilizer: (Component: ComponentType) => React.ForwardRefExoticComponent & React.RefAttributes>; declare type WrapComponentConfig = { isForwardRef?: boolean; addSetNativeProps?: boolean; isEqual?: (item: any, otherItem: any) => boolean; }; export declare const wrapComponent:

>(Component: ComponentType

, config?: WrapComponentConfig) => React.FC

; export {};