Module TouchableNativeFeedback-BsReactNative
type t
;
let selectableBackground : unit => t;
let selectableBackgroundBorderless : unit => t;
let canUseNativeForeground : unit => t;
let ripple : string => bool => t;
let make : ?accessible:bool => ?accessibilityLabel:string => ?accessibilityComponentType:[ `none | `button | `radiobutton_checked | `radiobutton_unchecked ] => ?accessibilityTraits:list([ `none | `button | `link | `header | `search | `image | `selected | `plays | `key | `text | `summary | `disabled | `frequentUpdates | `startsMedia | `adjustable | `allowsDirectInteraction | `pageTurn ]) => ?delayLongPress:int => ?delayPressIn:int => ?delayPressOut:int => ?disabled:bool => ?hitSlop:BsReactNative.Types.insets => ?onLayout:(BsReactNative.RNEvent.NativeLayoutEvent.t => unit) => ?onLongPress:(unit => unit) => ?onPress:(unit => unit) => ?onPressIn:(unit => unit) => ?onPressOut:(unit => unit) => ?pressRetentionOffset:BsReactNative.Types.insets => ?style:BsReactNative.Style.t => ?background:t => ?useForeground:bool => array(ReasonReact.reactElement) => ReasonReact.component(ReasonReact.stateless, ReasonReact.noRetainedProps, unit);