import { ComponentType } from 'react'; export declare type Omit = Pick>; /** * Create a HOC that binds some props for the wrapped component. */ export default function bindComponent(C: ComponentType, boundProps: Pick): ComponentType>;