import { ComponentType, PureComponent } from 'react'; import { Animated, StyleProp, ViewStyle } from 'react-native'; import { LinearGradientPropsType } from './types'; export declare type BaseLinearGradientPropsType = { LinearGradient: ComponentType; style: Animated.AnimatedProps> | StyleProp; backgroundColor: string; highlightColor: string; }; declare class BaseLinearGradient extends PureComponent { private readonly start; private readonly end; render(): JSX.Element; } declare const _default: Animated.AnimatedComponent; export default _default;