import type { PivotTableDataOptions } from '../../../chart-data-options/types.js'; import type { HeaderCellFormatter } from '../types.js'; import { DateFormatter } from '../../../common/formatters/create-date-formatter.js'; export declare const createHeaderCellValueFormatter: (dataOptions: PivotTableDataOptions, dateFormatter: DateFormatter) => HeaderCellFormatter; /** * Formats the date time string or Date object. * If the date is invalid, it returns the original value. */ export declare function formatDatetimeString(value: string | Date, dateFormatter: DateFormatter, dateFormat?: string): string; //# sourceMappingURL=header-cell-value-formatter.d.ts.map