import { T as ToolKey } from '../tool-DA175Utm.js'; /** * Formats a number for the active locale with `Intl.NumberFormat`: grouping * separators, decimals, currency, percent, and so on. * * @param name The template parameter name; its value must be a `number`. * @param options Passed to `Intl.NumberFormat` (style, currency, and so on). * * @example ```ts * msg`${num("price", { style: "currency", currency: "USD" })}`; * // { price: 1234.5 } renders "$1,234.50" * ``` */ declare function num(name: Name, options?: Intl.NumberFormatOptions): ToolKey; export { num };