1import * as React from 'react';
2import { View } from 'react-native';
3
4export type NativeLinearGradientProps = React.ComponentProps<typeof View> & {
5  children?: React.ReactChildren;
6  colors: number[];
7  locations?: number[] | null;
8  startPoint?: NativeLinearGradientPoint | null;
9  endPoint?: NativeLinearGradientPoint | null;
10};
11
12export type NativeLinearGradientPoint = [number, number];
13