infinity-forge
Version:
10 lines (9 loc) • 439 B
TypeScript
import { Dispatch, SetStateAction } from 'react';
import { InputProps } from '../interfaces.js';
export type InputCurrencyProps = {
decimalLimit?: number;
errorMessageMin?: (value: string) => string;
errorMessageMax?: (value: string) => string;
onChangeDispatcher?: Dispatch<SetStateAction<number>>;
};
export declare function InputCurrency(props: InputProps & InputCurrencyProps): import("react/jsx-runtime").JSX.Element;