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