1import { ImageCallback } from '@jimp/core'; 2 3interface Dither { 4 dither565(cb?: ImageCallback<this>): this; 5 dither16(cb?: ImageCallback<this>): this; 6} 7 8export default function(): Dither; 9 10