import type { HotInstance } from '../../core/types'; import type { CellProperties } from '../../settings'; export declare const RENDERER_TYPE: 'numeric'; /** * Formats the value using the numeric format. * * @param {*} value Value to be rendered. * @param {CellMeta} cellProperties Cell meta object. * @returns {*} Returns the formatted value. */ export declare function valueFormatter(value: unknown, cellProperties: CellProperties): unknown; /** * Numeric cell renderer. * * @private * @param {Core} hotInstance The Handsontable instance. * @param {HTMLTableCellElement} TD The rendered cell element. * @param {number} row The visual row index. * @param {number} col The visual column index. * @param {number|string} prop The column property (passed when datasource is an array of objects). * @param {*} value The rendered value. * @param {object} cellProperties The cell meta object (see {@link Core#getCellMeta}). */ export declare function numericRenderer(this: unknown, hotInstance: HotInstance, TD: HTMLTableCellElement, row: number, col: number, prop: string | number, value: unknown, cellProperties: CellProperties): void; export declare namespace numericRenderer { var valueFormatter: typeof import("./numericRenderer").valueFormatter; var RENDERER_TYPE: "numeric"; }