UNPKG

647 BTypeScriptView Raw
1import * as React from 'react';
2import GenericTouchable from './GenericTouchable';
3import type { GenericTouchableProps } from './GenericTouchableProps';
4/**
5 * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler.
6 */
7export type TouchableWithoutFeedbackProps = GenericTouchableProps;
8/**
9 * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler.
10 */
11declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<GenericTouchableProps & {
12 children?: React.ReactNode;
13} & React.RefAttributes<GenericTouchable>>;
14export default TouchableWithoutFeedback;