import { FC, ReactElement } from 'react'; import { GradientStop, GradientStopProps } from './GradientStop'; export interface RadialGradientProps { id: string; stops: ReactElement[]; color?: string; radius: number | string; } export declare const RadialGradient: FC>;