export function calculateMedian<T>(samples: Array<T>, math: TypedMath<T>): T | undefined;
export type TypedMath<T> = {
    add: (a: T, b: T) => T;
    divide: (a: T, b: bigint) => T;
    isGTE: (a: T, b: T) => boolean;
};
//# sourceMappingURL=statistics.d.ts.map