import React from 'react'; export type CurrencyInputProps = { id: string; label: string; required?: boolean; value?: string; style?: React.CSSProperties; disabled?: boolean; placeholder?: string; className?: string; appendClassName?: string; onChange?: (e: any) => void; error?: string; errorClassName?: string; }; export declare const CurrencyInput: ({ id, required, value, style, label, disabled, placeholder, className, appendClassName, onChange: propsOnChange, error: propsError, errorClassName }: CurrencyInputProps) => import('./react/jsx-runtime.js').JSX.Element;