import { T as ToolKey } from '../tool-DA175Utm.js'; /** * Formats a `Date` (or an epoch-millisecond number) for the active locale with * `Intl.DateTimeFormat`. It delegates straight to `Intl`, so an invalid `Date` * throws just as it does in the browser. * * @param name The template parameter name; its value must be a `Date` or `number`. * @param options Passed to `Intl.DateTimeFormat` (dateStyle, timeZone, and so on). * * @example ```ts * msg`Published ${date("on", { dateStyle: "long" })}`; * // { on: new Date("2020-01-15") } renders "Published January 15, 2020" * ``` */ declare function date(name: Name, options?: Intl.DateTimeFormatOptions): ToolKey; export { date };