import React from "react";
type AmountProps = {
    prefix?: string;
    suffix?: string;
    value: number;
    currencySymbol?: string;
    segmentColors?: string[];
};
declare function YhwAmountStyleRN({ prefix, // 货币符号前缀
suffix, // 货币符号后缀
value, // 金额值
currencySymbol, // 默认货币符号
segmentColors, }: AmountProps): React.JSX.Element;
export default YhwAmountStyleRN;
