import type { ApiParams } from '../types/ApiParams.js'; import type { TaskDescription } from '../types/TaskDescription.js'; export type RestartTaskInput = Pick; /** * Remove the record of a specific task (usually bundle result) and notify the client to reload, * which will trigger the task to be re-run. */ export declare function restartTask(params: ApiParams): Promise; export declare namespace restartTask { var procedure: import("@trpc/server").TRPCMutationProcedure<{ input: RestartTaskInput; output: void; meta: never; }>; } //# sourceMappingURL=restartTask.d.ts.map