import React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; import { IconNameTypes } from './name-types'; export type { IconNameTypes }; interface IconProps { name: IconNameTypes; size?: number; color?: string; wrapStyle?: ViewStyle; style?: TextStyle | TextStyle[]; dot?: boolean; dotColor?: string; } declare const Icon: React.FC; export default Icon;