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