import { ImageStyle, TextStyle, ViewProperties, ViewStyle } from '@blueeast/bluerain-ui-interfaces'; import React from 'react'; export interface ComponentStateProperties extends ViewProperties { /** * Image Component, if provided, imageSource will be ignored */ image?: React.ComponentType; /** * Image styles */ imageStyle?: ImageStyle; /** * Image source */ imageSource?: string; /** * Title text */ title?: string; /** * Title style */ titleStyle?: TextStyle; /** * Description Text */ description?: string; /** * Description style */ descriptionStyle?: TextStyle; /** * Button Component, if provided, other button props will be ignored */ button?: React.ComponentType; /** * Button title */ buttonTitle?: string; /** * Button styles */ buttonStyle?: ViewStyle; /** * Button onPress handler */ buttonOnPress?: Function; style?: ViewStyle; } declare const _default: React.ComponentType; export default _default;