import type { BuiltInRendererDefinition } from '../../types/built-in-renderer.types'; /** Formatted date. */ export declare const dateRenderer: BuiltInRendererDefinition; /** Formatted date and time. */ export declare const datetimeRenderer: BuiltInRendererDefinition; /** * Formatted time of day. * * Uses `toLocaleTimeString` rather than the token formatter so 12-/24-hour * choice follows the locale — which is what `formatValue`'s `time` branch * already does. */ export declare const timeRenderer: BuiltInRendererDefinition; /** * An elapsed span of time. * * `'short'` (the default) reads as `2h 15m` — the two most significant * non-zero units, which is what makes a column of durations scannable. `'clock'` * gives `02:15:00` for cases where exact alignment matters more. */ export declare const durationRenderer: BuiltInRendererDefinition; //# sourceMappingURL=temporal.d.ts.map