import type { SortOpts, Transducer } from "./api.js"; /** * Transducer. Similar to {@link movingAverage}, but yields median of sliding * window and supports non-numeric inputs. * * @remarks * The optional `key` and `cmp` function options can be used to select / compute * a sortable value and change sorting behavior. * * @param n - window size * @param opts - */ export declare function movingMedian(n: number, opts?: Partial>): Transducer; export declare function movingMedian(n: number, src: Iterable): IterableIterator; export declare function movingMedian(n: number, opts: Partial>, src: Iterable): IterableIterator; //# sourceMappingURL=moving-median.d.ts.map