import { default as React } from 'react'; /** * Icon */ export type IconComponentType = React.FC & { title?: string; }>; /** * Logo */ export type LogoComponentType = React.FC & { title?: string; }>; /** * Flag */ export type FlagComponentType = React.FC & { title?: string; }>; /** * React Ref */ export type ReactRef = React.RefCallback | React.MutableRefObject;