import { ViewProps, StyleProp, ImageStyle } from "react-native"; declare type Props = { name: string | number | { uri: string; }; color?: string; size: number; style?: StyleProp; } & ViewProps; declare const Icon: React.FC; export default Icon;