import { ImageProperties, ImageStyle, ViewStyle } from '@blueeast/bluerain-ui-interfaces'; import React from 'react'; export interface ImageBackgroundProperties extends ImageProperties { style?: ViewStyle; imageStyle?: ImageStyle; children?: React.ReactNode; backgroundColor?: string; } declare const _default: React.ComponentType; export default _default;