export declare const CONDITION_NAME = "intl_date_before"; type DataRow = { value: unknown; meta: { type?: string; locale?: string; dateFormat?: Intl.DateTimeFormatOptions; instance?: unknown; [key: string]: unknown; }; }; /** * @param dataRow The object which holds and describes the single cell value. * @param inputValues An array of values to compare with; inputValues[0] is maximum date of a range. * @returns Whether the cell value is before or equal to the given date. */ export declare function condition(dataRow: DataRow, [value]: unknown[]): boolean; export {};