import * as React from "react"; import { TextInputProps } from "../TextInput"; export interface CurrencyInputProps extends Omit { /** * An integer value representing hundredths (cents) for the currency amount. */ value?: number; onChange?: (value: number) => unknown; locale?: string; currency?: string; } export declare const CurrencyInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=CurrencyInput.d.ts.map