import { Address, Rpc, GetMultipleAccountsApi, GetAccountInfoApi } from '@solana/kit'; import Decimal from 'decimal.js'; /** * Batch-fetches mint accounts for the given addresses and returns a map of * mint address → scaledUiAmount multiplier. Only Token-2022 mints with * the ScaledUiAmountConfig extension will have multiplier !== 1. * * Mints that fail to fetch are silently skipped (multiplier defaults to 1). */ export declare function fetchScaledUiAmountMultipliers(rpc: Rpc, mintAddresses: Address[]): Promise>; //# sourceMappingURL=scaledUiAmount.d.ts.map