import React, { CSSProperties } from 'react'; type GradientTextProps = { /** 文字 */ text: string; /** 渐变色的色值合集,按顺序从上至下 */ colors?: [string, string]; /** 快速设置字号大小 */ fontSize?: number | string; /** 快速设置自重(设置true或自重值) */ bold?: true | number; /** 是否展示文字阴影 */ showShadow?: boolean; /** 阴影色,默认取colors[1]的值 */ shadowColor?: string; /** 阴影发散程度,为0时阴影非常清晰 */ shadowBlur?: string; /** 阴影的水平和垂直偏移度(px值) */ shadowOffset?: [number, number]; className?: string; style?: CSSProperties; }; declare const _default: React.MemoExoticComponent<(props: GradientTextProps) => React.JSX.Element>; export default _default;