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