import type { PressableProps } from "react-native"; import { HapticFeedbackTypes } from "../types"; import type { HapticOptions } from "../types"; export interface TouchableHapticProps extends PressableProps { hapticType?: HapticFeedbackTypes | keyof typeof HapticFeedbackTypes; hapticTrigger?: "onPressIn" | "onPress" | "onLongPress"; hapticOptions?: HapticOptions; } export declare function TouchableHaptic({ hapticType, hapticTrigger, hapticOptions, onPressIn, onPress, onLongPress, ...rest }: TouchableHapticProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TouchableHaptic.d.ts.map