import { InputHTMLAttributes, ReactNode, ReactText } from "react";
import { BoxProps } from "../Box";
export interface BalanceInputProps extends BoxProps {
value: ReactText;
onUserInput: (input: string) => void;
innerRef?: React.RefObject;
currencyValue?: ReactNode;
placeholder?: string;
inputProps?: Omit, "value" | "placeholder" | "onChange">;
isWarning?: boolean;
decimals?: number;
}