import React from 'react'; import type { ColorValue, ViewProps } from 'react-native'; import type { SweepGradientViewProps } from '../specs/SweepGradient.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 SweepGradient: ({ colors, center, positions, children, ...viewProps }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=SweepGradient.d.ts.map