import * as react from 'react';

declare function component<T extends (...args: any[]) => any>(fn: T): react.FC<Parameters<T>[0] extends undefined ? {} : Parameters<T>[0]>;

export { component };
