import React from 'react'; import { ImageStyle, ImageURISource } from 'react-native'; declare type IconTypes = 'arrow_down_lightgray2' | 'arrow_left_black' | 'arrow_left_darkgray' | 'arrow_left_darkgray2' | 'arrow_left_lightgray' | 'checked' | 'filter' | 'fold' | 'unfold' | 'success' | 'normal' | 'warning' | 'error'; export interface IconProps { size: number; type?: IconTypes; source?: ImageURISource; style?: ImageStyle; } export default class Icon extends React.Component { static defaultProps: IconProps; render(): JSX.Element | null; } export {};