import { ReactNode } from 'react'; export declare function Amount(props: AmountProps): JSX.Element; export interface AmountProps { style: any; labelStyle?: any; prefixStyle?: any; textStyle?: any; invalidStyle?: any; currency: string; value: string; onChange: (value: string, valid: boolean) => void; error?: string; label?: string; disabled?: boolean; descrition?: string | ReactNode; descritionStyle?: any; returnKeyType?: 'done' | 'go' | 'next' | 'search' | 'send'; }