import React from 'react'; import { StyleProp, TextStyle } from 'react-native'; import { IconName } from '../../types'; type Props = { name: IconName; color?: string; size?: number; style?: StyleProp; }; export declare const Icon: React.FC; export {};