import React from 'react'; import { TextInputProps } from 'react-native'; export declare const initializeCurrencyField: (reactNode: Number, options: any) => void, extractValue: (value: string, formatOptions: FormatOptions) => number, formatValue: (value: number, formatOptions: FormatOptions) => string; interface FormatOptions { currency: string; minimumFractionDigits?: number; maximumFractionDigits?: number; signEnabled?: boolean; } interface Handles { focus: () => void; blur: () => void; } declare const CurrencyField: React.ForwardRefExoticComponent & { value: number; maxValue?: number | undefined; currency?: string | undefined; selectTextOnInit?: boolean | undefined; onChangeText?: ((value: number, label: string) => void) | undefined; } & React.RefAttributes>; export default CurrencyField;