import React from 'react'; export type GradientSvgProps = { fill: string; width?: number; height?: number; children?: React.ReactNode | ((fill: string) => React.ReactNode); }; /** @deprecated 废弃,推荐使用GSvgIcon */ export declare const GradientSvg: React.FC;