import { BlueRain } from '../../index'; import { ImageStyle, ViewProperties, ViewStyle } from '@blueeast/bluerain-ui-interfaces'; import React from 'react'; export interface ComponentStateImageProps extends ViewProperties { /** * Image Component, if provided, imageSource will be ignored */ image?: React.ComponentType; /** * Image styles */ imageStyle?: ImageStyle; /** * Image source */ imageSource?: string; style?: ViewStyle; bluerain: BlueRain; } declare const _default: React.ComponentType; export default _default;