/** * Copyright 2023 Kapeta Inc. * SPDX-License-Identifier: MIT */ import { Target } from './types'; export declare class TargetRegistry { private _targets; reset(): void; register(targetId: string, target: Target): void; get(target: string): Promise; }