/** Shared display formatters for tool output. */ /** * Renders a USD amount with a leading `$`, or `"n/a"` for null/undefined/ * non-finite input. Used by both the CoinGecko and DeFiLlama formatters. */ export declare const fmtUsd: (n: number | null | undefined, digits?: number) => string;