import React from 'react'; import { type ViewProps } from 'react-native'; export type Props = ViewProps & { variant?: any; lightColor?: string; darkColor?: string; }; declare const AnimatedViewComponent: ({ style, ...otherProps }: Props) => React.JSX.Element; export default AnimatedViewComponent; //# sourceMappingURL=AnimatedView.d.ts.map