/// import CompCommon from '../../common/type'; export interface PriceProps extends CompCommon { price?: string | string[]; originPrice?: string; originColor?: string; color?: string; beforeContent?: React.ReactNode; afterContent?: React.ReactNode; commissionPrice?: string; fixedNum?: number; type?: Size | string; size?: number; symbolSize?: number; showAfterSymbol?: boolean; priceUnit?: string; unitSize?: number; thousands?: boolean; } declare enum Size { small = "small", smallMiddle = "smallMiddle", middle = "middle", largeMiddle = "largeMiddle", large = "large" } export {};