import { ImageProcessorInstance } from "../types.mjs";

//#region src/libs/image-processor/adapters/passthrough.d.ts
/**
 * A passthrough image processor that leaves the original stream unchanged.
 *
 * This is used when no image processor is configured or the configured processor cannot be
 * initialized.
 */
declare const passthroughImageProcessor: () => ImageProcessorInstance;
//#endregion
export { passthroughImageProcessor as default };
//# sourceMappingURL=passthrough.d.mts.map