/** * @copyright * Copyright 2026 Steven Roussey * All Rights Reserved */ import type { IExecuteContext, IExecutePreviewContext, TaskConfig } from "@workglow/task-graph"; import { Task } from "@workglow/task-graph"; import type { ImageValue } from "@workglow/util/media"; export interface ImageFilterInput { image: ImageValue; } export interface ImageFilterOutput { image: ImageValue; } export declare abstract class ImageFilterTask
= ImageFilterInput & Record