export declare const RENDERER_TYPE: 'time'; type CellProperties = Record & { timeFormat?: Intl.DateTimeFormatOptions; locale?: string; allowEmpty?: boolean; instance?: object; }; /** * Formats a time value using Intl.DateTimeFormat. * * @param {unknown} value The raw time value (24-hour format string). * @param {CellProperties} cellProperties The cell meta object. * @returns {unknown} The formatted time string, or a placeholder for empty/invalid values. */ export declare function valueFormatter(value: unknown, cellProperties: CellProperties): unknown; type HotInstance = Record; export interface TimeRendererFn { (this: unknown, hotInstance: HotInstance, TD: HTMLTableCellElement, row: number, col: number, prop: string | number, value: unknown, cellProperties: CellProperties): void; RENDERER_TYPE: string; valueFormatter: typeof valueFormatter; } export declare const timeRenderer: TimeRendererFn; export {};