import type { AdjustmentPreviewOptions, DitherImageOptions, ImageDataLike } from "./dither"; export declare const getPreviewImageData: (image: ImageDataLike, previewOptions: AdjustmentPreviewOptions | undefined, defaultMode: "fast" | "final") => ImageDataLike; export declare const shouldUseAdjustmentWorker: (options: Pick, image: ImageDataLike) => boolean; export declare const applyImageDataAdjustmentsInWorker: (image: ImageDataLike, opts: DitherImageOptions) => Promise; export declare const waitForAdjustmentTurn: () => Promise;