import * as React from 'react'; import { ColorProps, SpaceProps } from 'styled-system'; export declare type IconProps = SpaceProps & ColorProps & { name: string; family: string; color?: string; size: number; testID?: string; }; declare const Icon: React.FC; export default Icon;