/** * Selects one of three values (left, right, or center) based on whether * a value is within a threshold distance of a range's endpoints. * @template T The type of value to return (can be any type - string, number, object, etc.) */ export default function (range: readonly number[], value: number, threshold: number | null | undefined, left: T, right: T, center: T): T; //# sourceMappingURL=flush.d.ts.map