/** * Calculates the minimum amount of tokens to mint based on deposit amount, rate, and slippage * @param depositAmount The amount being deposited (in base units) * @param rate The current exchange rate between deposit and mint tokens * @param vaultTokenDecimals The number of precision decimals of the vault token * @param slippage The maximum acceptable slippage as a decimal (e.g., 0.01 for 1%) * @returns The minimum amount of tokens that should be minted accounting for slippage in vault token precision decimals */ declare const calculateMinimumMint: (depositAmount: bigint, rate: bigint, vaultTokenDecimals: number, slippage?: number) => bigint; export { calculateMinimumMint };