import type { TokenAmount, TokenInfo } from "./types.js"; /** * Parse a string amount into a TokenAmount * @param token - The token information * @param amountHuman - The amount as a string (e.g. "1.5", "100", "0.000001") or number * @returns A TokenAmount with the parsed dnum representation */ export declare function parseTokenAmount(token: TokenInfo, amountHuman: string | number): TokenAmount; //# sourceMappingURL=parse-token-amount.d.ts.map