import { Currency, CurrencyAmount } from '@uniswap/sdk-core'; /** * Parses a CurrencyAmount from the passed string. * Returns the CurrencyAmount, or undefined if parsing fails. */ export declare function weiToCurrency(value?: string, currency?: T): CurrencyAmount | undefined; export default function tryParseCurrencyAmount(value?: string, currency?: T): CurrencyAmount | undefined;