Type Alias BigNumberInputProps
BigNumberInputProps: { autofocus?: boolean; decimals: number; disabled?: boolean; max?: bigint; min?: bigint; onChange: ((value: bigint) => void); onError?: ((error: { message: string; value: string; } | null) => void); placeholder?: string; renderInput?: ((props: RenderInputProps) => ReactElement); value: bigint; }