import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; declare type TapControlerProps = { onPress: () => void; style?: StyleProp; }; export declare const TapControler: React.FC; export {};