import { Task } from "../Task";
import * as tbbox from "@sinclair/typebox";
export declare class RenderTask<Output extends Record<string, any>> extends Task<typeof RenderTask.schema, Output> {
    type: string;
    static schema: tbbox.TObject<{
        render: tbbox.TString;
    }>;
    execute(): Promise<Output>;
}
