1import { PropsWithChildren } from 'react';
2import { ViewProps } from 'react-native';
3
4export type NativeLinearGradientProps = ViewProps &
5  PropsWithChildren<{
6    colors: number[];
7    locations?: number[] | null;
8    startPoint?: NativeLinearGradientPoint | null;
9    endPoint?: NativeLinearGradientPoint | null;
10  }>;
11
12export type NativeLinearGradientPoint = [number, number];
13