export declare const CONDITION_NAME = "intl_date_between"; type DataRow = { value: unknown; meta: Record; }; /** * @param {object} dataRow The object which holds and describes the single cell value. * @param {Array} inputValues An array of values to compare with. * @param {number} inputValues."0" The minimum value of the range. * @param {number} inputValues."1" The maximum value of the range. * @returns {boolean} */ export declare function condition(dataRow: DataRow, [from, to]: unknown[]): boolean; export {};