/**
 * Return a threshold for a histogram by making its average.
 * @param histogram - Image histogram.
 * @param total - Number of pixels in the image.
 * @returns The threshold.
 */
export default function mean(histogram: Uint32Array, total: number): number;
//# sourceMappingURL=mean.d.ts.map