export declare const CONDITION_NAME = "date_tomorrow"; 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. * @returns {boolean} */ export declare function condition(dataRow: DataRow): boolean; export {};