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