1import { ImageCallback } from '@jimp/core'; 2 3interface Threshold { 4 threshold(opts: { 5 max: number, 6 replace?: number, 7 autoGreyscale?: boolean 8 }, cb?: ImageCallback<this>): this; 9} 10 11export default function(): Threshold; 12 13