import type { CellProperties } from '../../settings'; export declare const VALIDATOR_TYPE: 'numeric'; /** * The Numeric cell validator. * * @private * @param {*} value Value of edited cell. * @param {Function} callback Callback called with validation result. */ export declare function numericValidator(this: CellProperties, value: unknown, callback: (valid: boolean) => void): void; export declare namespace numericValidator { var VALIDATOR_TYPE: "numeric"; }