import { FC } from 'react';
import { TextStyle } from 'react-native';
import { TextProps } from 'react-native';
interface Props {
    text: string;
    textStyle?: TextStyle;
    textProps?: TextProps;
    colors: string[];
    start?: {
        x: number;
        y: number;
    };
    end?: {
        x: number;
        y: number;
    };
}
export declare const LinearGradientText: FC<Props>;
export {};
//# sourceMappingURL=LinearGradientText.d.ts.map