import { ComponentType } from 'react'; import { ComponentPropsType, ConnectOptions } from './types'; /** * connect HOC that maps state and dispatch to props with optimized memoization. * Prepares selector hooks outside render to avoid re-creating on each render. */ declare const connect: , MDTP extends ComponentPropsType = Record, OWNP extends ComponentPropsType = Record>(options: ConnectOptions) =>

(WrappedComponent: ComponentType

) => ComponentType>; export default connect;