import { Component, ReactElement } from 'react';
import { GradientStop, GradientStopProps } from './GradientStop';
export interface RadialGradientProps {
    id: string;
    stops: ReactElement<GradientStopProps, typeof GradientStop>[];
    color?: string;
    radius: number | string;
}
export declare class RadialGradient extends Component<RadialGradientProps> {
    static defaultProps: Partial<RadialGradientProps>;
    render(): JSX.Element;
}
