import type React from 'react';
export type ReactComponentOrElement = React.ComponentClass<any, any> | React.FC<any> | JSX.Element;
