import { BlueRain } from '../../index'; import { ViewProperties, ViewStyle } from '@blueeast/bluerain-ui-interfaces'; import React from 'react'; export interface ComponentStateButtonProps extends ViewProperties { /** * 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?: () => void; bluerain: BlueRain; } declare const _default: React.ComponentType; export default _default;