export declare const CONDITION_NAME = "between"; type DataRow = { value: unknown; meta: { type?: string; locale?: string; dateFormat?: Intl.DateTimeFormatOptions; instance?: unknown; [key: string]: unknown; }; }; /** * @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]: (string | number | undefined)[]): boolean; export {};