/** * Returns whether a value is a valid React component * * **Note:** uses `react-is` library internally. If the host environment does not has `react-is` library, * any strings, function or object with $$typeof property are considered valid. * * **Note:** * * @param {*} test a reference being tested * @returns whether a value is a React component */ export declare const isReactComponent: (test: any) => boolean; export default isReactComponent;