import { ReactSVG, ForwardRefExoticComponent } from 'react'; import { SvgProps } from 'react-native-svg'; import * as reactNativeSvg from 'react-native-svg'; export { reactNativeSvg as NativeSvg }; type IconNode = [elementName: keyof ReactSVG, attrs: Record][]; interface IconProps extends SvgProps { size?: string | number; strokeWidth?: string | number; title?: string; } type Icon = ForwardRefExoticComponent; export type { Icon, IconNode, IconProps };