import * as React from "react"; declare type I = { onPress: (evt?: any) => void; [key: string]: any; }; declare type PropsAreEqual
= (prevProps: Readonly
, nextProps: Readonly
) => boolean; declare const withPreventDoubleTap:
(component: {
(props: P): Exclude , componentName?: string) => {
(props: P): JSX.Element;
displayName: string;
};
export default withPreventDoubleTap;