import { ImgstryProcessor } from '../../../core'; import { IWorkerData } from './types'; /** * Processor implementation for the web worker * * @export * @class Imgstry * @extends {ImgstryProcessor} */ export declare class Imgstry extends ImgstryProcessor { width: number; height: number; private _imageData; constructor({ buffer, width, height }: IWorkerData); toDataUrl(_: string): string; reset(): ImgstryProcessor; clone(data: ImageData): ImageData; createImageData(data: ImageData): ImageData; get imageData(): ImageData; set imageData(image: ImageData); }