import { HTMLTextRenderer } from './text'; import { RendererFactory } from './renderer_factory'; import { CurrencyRenderOptions, StyleDefaults } from './data_styles'; import { RendererOptions } from './renderer_types'; import { Renderer } from './renderer'; import { Cell, Field } from '../data_tree'; export declare class HTMLCurrencyRenderer extends HTMLTextRenderer { readonly options: CurrencyRenderOptions; constructor(document: Document, options: CurrencyRenderOptions); getText(data: Cell): string | null; } export declare class CurrencyRendererFactory extends RendererFactory { static readonly instance: CurrencyRendererFactory; constructor(); create(document: Document, _styleDefaults: StyleDefaults, _rendererOptions: RendererOptions, _field: Field, options: CurrencyRenderOptions): Renderer; get rendererName(): string; }