import { IReactComponent } from "./IReactComponent";
export type IWrappedComponent<P> = {
    wrappedComponent: IReactComponent<P>;
};
