import { Props as ExpressiveMoneyInputProps } from '../ExpressiveMoneyInput'; type Props = { id: string; describedById?: string; amount?: number | null; currency: string; autoFocus?: boolean; onChange: (amount: number | null) => void; onFocusChange?: (focused: boolean) => void; } & Pick; export declare const AmountInput: ({ id, describedById, amount, currency, autoFocus, onChange, onFocusChange, loading, }: Props) => import("react").JSX.Element; export {}; //# sourceMappingURL=AmountInput.d.ts.map