import { FC, ReactElement } from 'react'; import { GradientStop, GradientStopProps } from './GradientStop'; export interface GradientProps { id: string; stops: ReactElement[]; color?: string; direction: 'vertical' | 'horizontal' | 'radial'; } export declare const Gradient: FC>;