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