import { AdaptCommand } from "./command.js"; import IAnnotationManager from "../../annotations/annotationManager.js"; export default class DownloadAnnotationsCommand extends AdaptCommand { private appVariantId; private prefix; private annotationManager; constructor(appVariantId: string, prefix: string, annotationManager: IAnnotationManager); accept: (filename: string) => filename is "manifest.json"; execute(files: Map, filename: string): Promise; }