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