import { FunctionComponent } from "react"; import { ImageStyle } from "react-native"; import { Maybe } from "../../generated/graphql"; /** * A wrapper around React-native image that will display a default image in case of uri = undefined */ declare const ImageComponent: FunctionComponent<{ style?: ImageStyle | undefined; uri?: string | Maybe; }>; export { ImageComponent };