import React from 'react'; import { View } from 'react-native'; declare type Props = { colors: number[]; locations?: number[] | null; startPoint?: Point | null; endPoint?: Point | null; } & React.ComponentProps; declare type Point = [number, number]; export default class NativeLinearGradient extends React.PureComponent { render(): JSX.Element; } export {};