import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; type LinearGradientComponentProps = { color1: string; color2: string; color3?: string; startX: number; startY: number; endX: number; endY: number; children?: React.ReactNode; style?: StyleProp; }; declare const LinearGradientComponent: ({ children, color1, color2, color3, startX, startY, endX, endY, style, }: LinearGradientComponentProps) => React.JSX.Element; export default LinearGradientComponent;