import React from 'react';
import { TextProps } from 'react-native';
export interface AwesomeTextProps extends TextProps {
    variant?: 'h1' | 'h2' | 'h3' | 'body' | 'caption';
    color?: string;
    weight?: 'normal' | 'bold' | 'light';
    align?: 'left' | 'center' | 'right';
    customStyle?: object;
    animation?: 'bounce' | 'zoom' | 'none';
    duration?: number;
    delay?: number;
    containerStyle?: object;
    minZoom?: number;
    maxZoom?: number;
}
declare const AwesomeText: React.FC<AwesomeTextProps>;
export default AwesomeText;
