import * as React from 'react';
export declare function reactive<P extends object>(arg: React.ComponentType<P>): React.ComponentType<P>;
export declare function reactive(): <P extends object>(Target: React.ComponentType<P>) => React.ComponentType<P>;
export declare function reactive(func: Function): void;
