import * as React from 'react'; import { View } from 'react-native'; import { NativeLinearGradientPoint } from './NativeLinearGradient.types'; export declare type LinearGradientPoint = { x: number; y: number; } | NativeLinearGradientPoint; export declare type LinearGradientProps = { /** * An array of colors that represent stops in the gradient. At least two colors are required * (for a single-color background, use the `style.backgroundColor` prop on a `View` component). */ colors: string[]; /** * An array that contains `number`s ranging from 0 to 1, inclusive, and is the same length as the `colors` property. * Each number indicates a color-stop location where each respective color should be located. * * For example, `[0.5, 0.8]` would render: * - the first color, solid, from the beginning of the gradient view to 50% through (the middle); * - a gradient from the first color to the second from the 50% point to the 80% point; and * - the second color, solid, from the 80% point to the end of the gradient view. * * The color-stop locations must be ascending from least to greatest. */ locations?: number[] | null; /** * An object `{ x: number; y: number }` or array `[x, y]` that represents the point * at which the gradient starts, as a fraction of the overall size of the gradient ranging from 0 to 1, inclusive. * * For example, `{ x: 0.1, y: 0.2 }` means that the gradient will start `10%` from the left and `20%` from the top. * * **On web**, this only changes the angle of the gradient because CSS gradients don't support changing the starting position. */ start?: LinearGradientPoint | null; /** * An object `{ x: number; y: number }` or array `[x, y]` that represents the point * at which the gradient ends, as a fraction of the overall size of the gradient ranging from 0 to 1, inclusive. * * For example, `{ x: 0.1, y: 0.2 }` means that the gradient will end `10%` from the left and `20%` from the bottom. * * **On web**, this only changes the angle of the gradient because CSS gradients don't support changing the end position. */ end?: LinearGradientPoint | null; } & React.ComponentProps; /** * Renders a native view that transitions between multiple colors in a linear direction. */ export declare class LinearGradient extends React.Component { render(): JSX.Element; }