import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; import { AnimatorComponentProps, ViewAnimations } from './types'; import { BaseLayoutProps } from '../BaseLayout'; import { Omit } from '../utils/omit'; export declare type ViewAnimatorProps = { /** * A list of View animations. */ animation: ViewAnimations; /** * A custom style. */ style?: StyleProp; } & AnimatorComponentProps & Omit; /** * ### ViewAnimator * This component allows easily and declaratively define the desired animation on the * View component. */ export declare const ViewAnimator: React.FC; //# sourceMappingURL=View.d.ts.map