import React from 'react';
import { View } from 'react-native';
import { GradientTextProps } from './types';
/**
* GradientText Component
*
* Renders text with a gradient color effect using linear gradients.
* Displays text using a linear gradient fill across the glyphs.
*
* **Note**: For native platforms (iOS/Android), gradient animation is currently
* supported on web only. Native platforms show static gradients.
*
* @example
* ```tsx
* // Basic gradient
*
* Hello World
*
*
* // Custom gradient direction
*
* Diagonal Gradient
*
*
* // Controlled gradient position (web only)
*
* Mid Position
*
* ```
*/
export declare const GradientText: React.ForwardRefExoticComponent>;