export declare const CONDITION_NAME = "intl_time_between"; 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 [from, to] The minimum and maximum value of the range. * @returns Whether the cell value is between the given times. */ export declare function condition(dataRow: DataRow, [from, to]: unknown[]): boolean; export {};