import { FC } from 'react';
export interface GradientStopProps {
    /**
     * SVG `offset` attribute for the stop.
     */
    offset: number | string;
    /**
     * SVG `stop-opacity` attribute for the stop.
     *
     * @default 1
     */
    stopOpacity: number | string;
    /**
     * Stop color.
     */
    color?: string;
}
export declare const GradientStop: FC<Partial<GradientStopProps>>;
