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