import type { SyntheticEvent } from 'react'; import type { NumberFormatValues, SourceInfo } from 'react-number-format'; declare type CurrencyFieldProps = { name: string; value: string; width?: string; label?: string; autoComplete?: string; onChange?: (e: SyntheticEvent | null, keyboardInputValue?: string | undefined) => void; onValueChange: (values: NumberFormatValues, sourceInfo: SourceInfo) => void; error?: boolean; errorMessage?: string; }; export declare const CurrencyField: ({ name, value, width, autoComplete, onChange, onValueChange, label, error, errorMessage, }: CurrencyFieldProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};