import { Currency, CurrencyAmount } from "@uniswap/sdk-core"; /** * Given some token amount, return the max that can be spent of it * @param currencyAmount to return max of */ export declare function maxAmountSpend(currencyAmount?: CurrencyAmount): CurrencyAmount | undefined;