import * as React from 'react'; import type { ViewProps } from 'react-native'; import Animated, { AnimateProps } from 'react-native-reanimated'; import { AnimatedEntryViewStyle, AnimatedExitViewStyle, ToAnimation } from '../hooks/useReanimatedAnimationBuilder'; export declare const AnimatedContainer: React.ForwardRefExoticComponent, "entering" | "exiting"> & { autofocus?: boolean | undefined; duration?: number | undefined; from: AnimatedEntryViewStyle; exitFrom?: AnimatedExitViewStyle | undefined; exitTo?: ToAnimation; to: ToAnimation; style?: Pick | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>;