UNPKG

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