import { type TextInput, type TextInputProps, type ViewProps } from 'react-native'; import { type IInputFieldProps } from '@cdx-ui/primitives'; import { type CurrencyInputVariantProps } from './styles'; export interface CurrencyInputProps extends IInputFieldProps, CurrencyInputVariantProps, Pick { /** Current numeric value. Renders formatted zero when undefined or null. */ value?: number; /** Called with the parsed number when the user changes the amount. */ onChangeValue?: (value: number) => void; /** Currency symbol rendered as an inline prefix. Defaults to `"$"`. */ currencySymbol?: string; className?: string; style?: ViewProps['style']; } export declare const CurrencyInput: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=index.d.ts.map