import React from 'react'; import { ViewStyle } from 'react-native'; import { SharedValue } from 'react-native-reanimated'; import { CardType } from '../creditCard/props'; interface AnimatedLinearGradientProps { cardType: CardType; previousCardType?: CardType; animationProgress: SharedValue; customColors?: { start: string; end: string; }; start?: { x: number; y: number; }; end?: { x: number; y: number; }; style?: ViewStyle; children?: React.ReactNode; } export declare const AnimatedLinearGradient: React.FC; export {};