import type { HotInstance } from '../../core/types'; import type { CellProperties } from '../../settings'; export declare const RENDERER_TYPE: 'password'; /** * Formats the value using the password format. * * @param {*} value Value to be formatted. * @param {CellMeta} cellProperties Cell meta object. * @returns {*} Returns the formatted value. */ export declare function valueFormatter(value: unknown, cellProperties: CellProperties): string; /** * @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. */ export declare function passwordRenderer(hotInstance: HotInstance, TD: HTMLTableCellElement, row: number, col: number, prop: string | number, value: unknown): void; export declare namespace passwordRenderer { var valueFormatter: typeof import("./passwordRenderer").valueFormatter; var RENDERER_TYPE: "password"; }