import * as React from "react"; import { ChangeHandler, ITheme } from "../__utils/type"; import { IValidationArray } from "@turtlemint/validators"; export interface AmountProps { name?: string; onChange?: ChangeHandler; onBlur?: (value: string) => void; disabled?: boolean; style?: React.CSSProperties; /** Default min value is 1 rupee */ min?: number; /** Default max value is 100 crs */ max?: number; showConverter?: boolean; validations?: IValidationArray; error?: boolean; placeholder?: string; value?: number | string; theme?: ITheme; currency?: string; showCurrencyAsText?: boolean; } export declare const Amount: React.FC; declare const _default; export default _default;