import { type Numberish } from "../format.js"; /** Bitcoin with optimal decimals: 0.00001234 ₿ */ export declare function btc(value: Numberish): string; /** Ethereum with optimal decimals: 0.123 Ξ */ export declare function eth(value: Numberish): string; /** * Format a value in any currency: symbol before for fiat/stablecoins * (`$12.34`), after for crypto (`0.5 ₿`), optimal decimals + thousands * grouping either way (en-pinned — SSR-hydration-safe). */ export declare function money(value: Numberish, currencyCode: string): string; //# sourceMappingURL=money.d.ts.map