import React from 'react'; import type { ColorValue, ViewProps } from 'react-native'; import type { LinearGradientViewProps } from '../specs/LinearGradient.nitro'; import { type WithSharedValueObj } from './utils'; type GradientViewProps = WithSharedValueObj & { colors: ColorValue[]; }>; type _Props = GradientViewProps & ViewProps; type Props = Pretify<_Props>; type Pretify = { [k in keyof T]: T[k]; }; export declare const LinearGradient: ({ colors, start, end, positions, angle, children, ...viewProps }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=LinearGradient.d.ts.map