import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export declare type RippleTargetEvent = { x: number; y: number; }; declare type RippleBtnProps = { children: React.ReactElement; duration?: number; overflow?: boolean; containerStyle?: StyleProp; backgroundColor?: string; onAnimationEnd?: () => void; style?: StyleProp; }; export declare type RippleRef = { onPress: ({ x, y }: RippleTargetEvent) => void; }; export declare const Ripple: React.MemoExoticComponent>>; export {};