import { FunctionComponent } from 'react'; import { ViewProps } from 'react-native'; import { GProps } from 'react-native-svg'; interface Props extends GProps, ViewProps { size?: number; color?: string | string[]; } declare let AddSquare: FunctionComponent; export default AddSquare;