import { InputHTMLAttributes, ReactNode, ReactText } from "react"; import { BoxProps } from "../Box"; export interface BalanceInputProps extends BoxProps { value: ReactText; onChange?: InputHTMLAttributes["onChange"]; currencyValue?: ReactNode; placeholder?: string; inputProps?: Omit, "value" | "placeholder" | "onChange">; isWarning?: boolean; }