import { SensitiveFunction, NewShadowDatasetIterator } from './types';
import Decimal from 'decimal.js';
export declare function calculateSensitivity<DATASET>(func: SensitiveFunction<DATASET>, newSubsetIter: NewShadowDatasetIterator<DATASET>, dataset: DATASET, maxConcurrencyCount: number): Promise<Decimal>;
