export declare const RENDERER_TYPE = "intl-time"; export { valueFormatter } from '../timeRenderer/timeRenderer'; type HotInstance = Record; type CellProperties = Record & { timeFormat?: Intl.DateTimeFormatOptions; locale?: string; allowEmpty?: boolean; }; export interface IntlTimeRendererFn { (this: unknown, hotInstance: HotInstance, TD: HTMLTableCellElement, row: number, col: number, prop: string | number, value: unknown, cellProperties: CellProperties): void; RENDERER_TYPE: string; } export declare const intlTimeRenderer: IntlTimeRendererFn;