import React, { ReactNode } from "react"; import { XHComponentCommonProps } from "../../types"; export declare type AmountInputProps = { space?: number; value: string; maxlength: number; onFocus?: (e: any) => void; unit?: string; slot?: ReactNode; shortcut?: ReactNode; errTip?: string; maxAmount?: number | string; minAmount?: number | string; showUpgrade?: boolean; onUpgrade?: () => void; loanOnekey?: () => void; placeholder?: string; focus?: boolean; /** 借款步长 */ step?: number; showBottom?: boolean; title?: ReactNode; dataTrackId?: string; } & XHComponentCommonProps; declare const AmountInput: React.FC; export default AmountInput;