import { type DataService } from '@sisense/sdk-pivot-client'; import { type PivotTableDataOptionsInternal } from '../../chart-data-options/types'; import { type CustomDataCellFormatter, type CustomHeaderCellFormatter } from '../../pivot-table/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; //# sourceMappingURL=use-apply-pivot-table-formatting.d.ts.map