1import * as React from 'react';
2import { NativeLinearGradientPoint, NativeLinearGradientProps } from './NativeLinearGradient.types';
3export default function NativeLinearGradient({ colors, locations, startPoint, endPoint, ...props }: NativeLinearGradientProps): React.ReactElement;
4/**
5 * Extracted to a separate function in order to be able to test logic independently.
6 */
7export declare function getLinearGradientBackgroundImage(colors: number[] | string[], locations?: number[] | null, startPoint?: NativeLinearGradientPoint | null, endPoint?: NativeLinearGradientPoint | null, width?: number, height?: number): string;
8//# sourceMappingURL=NativeLinearGradient.web.d.ts.map