1 | import * as React from 'react';
|
2 | import GenericTouchable from './GenericTouchable';
|
3 | import type { GenericTouchableProps } from './GenericTouchableProps';
|
4 | export type TouchableWithoutFeedbackProps = GenericTouchableProps;
|
5 | declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<GenericTouchableProps & {
|
6 | children?: React.ReactNode;
|
7 | } & React.RefAttributes<GenericTouchable>>;
|
8 | export default TouchableWithoutFeedback;
|