import { GestureResponderEvent } from 'react-native'; import { IAccessibilityPropTypes } from '@utils/accessibility-helper'; import { ColorType } from '../../styles/Styles'; export interface BlockButtonProps extends IAccessibilityPropTypes { type?: 'primary' | 'warning' | 'normal'; title: string; colorType?: ColorType; disabled?: boolean; onPress?: (event: GestureResponderEvent) => void; onLongPress?: (event: GestureResponderEvent) => void; }