import * as React from "react"; import { PressableProps } from "react-native"; export interface IRNBounceableProps extends PressableProps { bounceEffectIn?: number; bounceEffectOut?: number; bounceVelocityIn?: number; bounceVelocityOut?: number; bouncinessIn?: number; bouncinessOut?: number; useNativeDriver?: boolean; style?: PressableProps["style"]; } declare const RNBounceable: React.NamedExoticComponent>; export default RNBounceable;