import type { Dispatch, MutableRefObject, SetStateAction } from "react"; import type { BigNumber } from "bignumber.js"; import type { Unit } from "@ledgerhq/types-cryptoassets"; type SyncAmountInputsParams = { cryptoAmount: BigNumber; fiatAmount: BigNumber; transactionUseAllAmount: boolean; inputMode: "fiat" | "crypto"; cryptoInputValue: string; fiatInputValue: string; locale: string; accountUnit: Unit; fiatUnit: Unit; lastTransactionAmountRef: MutableRefObject; lastFiatAmountRef: MutableRefObject; lastUseAllAmountRef: MutableRefObject; lastUserInputTimeRef: MutableRefObject; setCryptoInputValue: Dispatch>; setFiatInputValue: Dispatch>; }; export declare function syncAmountInputs(params: SyncAmountInputsParams): void; export {}; //# sourceMappingURL=amountInputSync.d.ts.map