/// interface Image { getWidth(): number; getHeight(): number; saveTo(path: string): void; pixel(x: number, y: number): number; } declare namespace images { function requestScreenCapture(landscape?: boolean): boolean; function captureScreen(): Image; function captureScreen(path: string): void; function pixel(image: Image, x: number, y: number): number; function save(image: Image, path: string): void; function read(path: string): Image; function load(url: string): Image; interface FindColorOptions { region?: [number, number] | [number, number, number, number]; threshold?: number; } function clip(image: Image, x: number, y: number, w: number, h: number): Image; function findColor(image: Image, color: number | string, options?: FindColorOptions): Point; function findColorInRegion(image: Image, color: number | string, x: number, y: number, width?: number, height?: number, threshold?: number): Point; function findColorEquals(image: Image, color: number | string, x?: number, y?: number, width?: number, height?: number): Point; function detectsColor(image: Image, color: number | string, x: number, y: number, threshold?: number, algorithm?: 'diff'): Point; interface FindImageOptions { region?: [number, number] | [number, number, number, number]; threshold?: number; level?: number; } function findImage(image: Image, template: Image, options?: FindImageOptions): Point; function findImageInRegion(image: Image, template: Image, x: number, y: number, width?: number, height?: number, threshold?: number): Point; function findMultiColors(image: Image, firstColor: number | string, colors: [number, number, number | string][], options?: FindColorOptions): Point; function fromBase64(base64: string): Image; function toBase64(img: Image): string; }