export declare const CONDITION_NAME = "date_before"; 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 {*} inputValues."0" Maximum date of a range. * @returns {boolean} */ export declare function condition(dataRow: DataRow, [value]: (string | undefined)[]): boolean; export {};