import { type DataService } from '@sisense/sdk-pivot-query-client'; import { type PivotTableDataOptionsInternal } from '../../../../../domains/visualizations/core/chart-data-options/types'; import { type CustomDataCellFormatter, type CustomHeaderCellFormatter } from '../formatters/types'; /** * A hook that applies formatting over pivot table cells. * * @internal */ export declare const useApplyPivotTableFormatting: ({ dataService, dataOptions, onDataCellFormat, onHeaderCellFormat, }: { dataService: DataService; dataOptions: PivotTableDataOptionsInternal; onDataCellFormat?: CustomDataCellFormatter | undefined; onHeaderCellFormat?: CustomHeaderCellFormatter | undefined; }) => void;