import * as factory from '../factory';
import type { ActionRepo } from '../repo/action';
import type { ServiceOutputRepo } from '../repo/serviceOutput';
import type { TaskRepo } from '../repo/task';
export declare function registerService(params: factory.action.interact.register.service.IAttributes[]): (repos: {
    action: ActionRepo;
    serviceOutput: ServiceOutputRepo;
    task: TaskRepo;
}) => Promise<void>;
