/**
 * Return a threshold for a histogram using its entropy.
 * @param histogram - The image histogram.
 * @param total - Total number of pixels of the image.
 * @returns The threshold.
 */
export default function renyiEntropy(histogram: Uint32Array, total: number): number;
//# sourceMappingURL=renyiEntropy.d.ts.map