import React from "react";
import { TouchableHighlightProps } from "react-native";
import { HapticFeedbackTypes } from "react-native-haptic-feedback";
import { Color } from "../../types";
interface ExtraTouchableProps {
flex?: number;
haptic?: HapticFeedbackTypes | true;
noFeedback?: boolean;
underlayColor?: Color;
}
export type TouchableProps = TouchableHighlightProps & ExtraTouchableProps;
/**
* `haptic` can be used like:
*
* or
*
*/
export declare const Touchable: React.FC;
export {};