export declare const VALIDATOR_TYPE = "intl-time"; export declare const SOURCE_DATA_WARNING_MESSAGE: string; export { sourceDataValidator } from '../timeValidator/timeValidator'; type CellMeta = Record & { allowEmpty?: boolean; }; /** * The IntlTime cell validator. * * @private * @param {*} value Value of edited cell. * @param {Function} callback Callback called with validation result. */ export declare function intlTimeValidator(this: CellMeta, value: unknown, callback: (valid: boolean) => void): void; export declare namespace intlTimeValidator { var VALIDATOR_TYPE: string; }