import React, { ComponentType } from 'react'; import { UseContainerContextReturnType } from '../type'; /** * 支持自定义 ID 的组件 Props */ declare function withContainer

(WrappedComponent: ComponentType

, displayName: string): React.ForwardRefExoticComponent & React.RefAttributes>; export default withContainer;