export interface PisellAdjustPriceProps { value?: number; originValue: number; defaultValue?: number; onChange?: (val: number) => void; selectType?: 'light' | 'dark'; backgroundColor?: string; containerBackgroundColor?: string; buttonBackgroundColor?: string; textColor?: string; resetButtonBackgroundColor?: string; resetButtonTextColor?: string; isDoneButtonFollowTheme?: boolean; doneButtonBackgroundColor?: string; doneButtonTextColor?: string; isShowMainText?: boolean; mainTextColor?: string; isShowSubText?: boolean; subTextColor?: string; resetText?: string; doneText?: string; }