import { Renderer } from './renderer'; import { StyleDefaults, TimeRenderOptions } from './data_styles'; import { RendererOptions } from './renderer_types'; import { RendererFactory } from './renderer_factory'; import { Cell, Field } from '../data_tree'; export declare class HTMLDateRenderer implements Renderer { private readonly document; private readonly queryTimezone; constructor(document: Document, queryTimezone: string | undefined); render(data: Cell): Promise; } export declare class DateRendererFactory extends RendererFactory { static readonly instance: DateRendererFactory; activates(field: Field): boolean; create(document: Document, _styleDefaults: StyleDefaults, _rendererOptions: RendererOptions, _field: Field, _options: TimeRenderOptions, timezone?: string): Renderer; get rendererName(): string; }