1import { ImageCallback } from '@jimp/core'; 2 3interface Fisheye { 4 fishEye(opts?: { r: number }, cb?: ImageCallback<this>): this; 5 fishEye(cb?: ImageCallback<this>): this; 6} 7 8export default function(): Fisheye; 9 10