import React from 'react'; import { Animated } from 'react-native'; import type { StyleProp, ViewStyle } from 'react-native'; import type { LinearGradientProps } from 'expo-linear-gradient'; interface SwipeGradientProps extends Omit { style: StyleProp; children?: React.ReactNode; colors?: LinearGradientProps['colors']; } declare class SwipeGradientView extends React.Component { render(): React.JSX.Element; } export default SwipeGradientView; export declare const AnimatedGradient: Animated.AnimatedComponent; //# sourceMappingURL=SwipeGradient.d.ts.map