export declare const RENDERER_TYPE: 'date'; type CellProperties = Record & { dateFormat?: Intl.DateTimeFormatOptions; locale?: string; allowEmpty?: boolean; instance?: object; }; /** * Formats a date value using Intl.DateTimeFormat. * * @param {unknown} value The raw date value (ISO 8601 string). * @param {CellProperties} cellProperties The cell meta object. * @returns {unknown} The formatted date string, or a placeholder for empty/invalid values. */ export declare function valueFormatter(value: unknown, cellProperties: CellProperties): unknown; type HotInstance = Record; export interface DateRendererFn { (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 dateRenderer: DateRendererFn; export {};