import React from 'react'; import './index.less'; export interface PisellPriceRadioProps { /** 是否选中 */ checked?: boolean; /** 点击选中回调 */ onSelect?: () => void; /** 价格值 */ value?: string; /** 价格变化回调 */ onChange?: (value: string) => void; /** 标题 */ title?: string; /** 货币符号 */ currencySymbol?: string; /** 主题颜色 */ theme?: 'purple' | 'red'; /** 是否显示负号 */ showMinus?: boolean; /** 是否禁用 */ disabled?: boolean; /** 占位符 */ placeholder?: string; } declare const PisellPriceRadio: React.FC; export default PisellPriceRadio;