import * as React from 'react'; import { ThreeElements } from '@react-three/fiber'; import * as THREE from 'three'; export declare enum GradientType { Linear = "linear", Radial = "radial" } export type GradientTextureProps = { stops: Array; colors: Array; attach?: string; size?: number; width?: number; type?: GradientType; innerCircleRadius?: number; outerCircleRadius?: string | number; } & Omit; export declare function GradientTexture({ stops, colors, size, width, type, innerCircleRadius, outerCircleRadius, ...props }: GradientTextureProps): React.JSX.Element;