export declare const VALIDATOR_TYPE: 'intl-datetime'; export declare const SOURCE_DATA_WARNING_MESSAGE: string; type CellMeta = Record & { allowEmpty?: boolean; }; /** * Validates a date-time value against the source data format. * * @param {unknown} value The value to validate. * @param {CellMeta} cellMeta The cell meta object. * @returns {boolean} True if valid. */ export declare function sourceDataValidator(value: unknown, cellMeta: CellMeta): boolean; export declare namespace sourceDataValidator { var rowIndependent: boolean; } /** * The IntlDatetime cell validator. * * @private * @param {*} value Value of edited cell. * @param {Function} callback Callback called with validation result. */ export declare function intlDatetimeValidator(this: CellMeta, value: unknown, callback: (valid: boolean) => void): void; export declare namespace intlDatetimeValidator { var VALIDATOR_TYPE: "intl-datetime"; } export {};