import type { NumericalGapPolicy, TimeGapPolicy } from '../types/gap-policy.js'; /** * Gets the threshold value in milliseconds. * * If gapPolicy === 'gap' or the threshold is invalid, it fallbacks to 0 (in that way, every gap will remain as gap) * * @param gapPolicy - given GapPolicy * @returns */ export declare function getThresholdValue(gapPolicy: TimeGapPolicy): number; export declare function getNumericalThresholdValue(gapPolicy: NumericalGapPolicy): number;