import { T as ToolKey } from '../tool-DA175Utm.js'; /** * Joins a `string[]` with the active locale's grammar using `Intl.ListFormat`, * including an Oxford comma where the locale uses one. * * @param name The template parameter name; its value must be a `string[]`. * @param options Passed to `Intl.ListFormat` (`type`, `style`). * * @example ```ts * msg`You invited ${list("names")}`; * // { names: ["Ada", "Grace", "Alan"] } renders "You invited Ada, Grace, and Alan" * ``` */ declare function list(name: Name, options?: Intl.ListFormatOptions): ToolKey; export { list };