import React from 'react';
import { Animated, ViewStyle } from 'react-native';
declare type Props = {
    style?: ViewStyle;
    toScaleValue?: number;
    friction?: number;
    tension?: number;
    colorTransitionDuration?: number;
    colorStart?: string;
    colorEnd?: string;
    isPressed?: boolean;
    callFunctionOnPressIn?: boolean;
    onPress?: () => void;
    renderComponent?: (colorInterpolation: Animated.AnimatedInterpolation) => React.ReactElement;
};
declare const AnimatedPressable: React.FC<Props>;
export default AnimatedPressable;
