import type { DriverInterface } from "../driver"; import type { ManifestInterface } from "./interface"; /** * Factory to instantiate Manifest */ export declare class ManifestFactory { private constructor(); static parseJson(manifestJson: string): ManifestInterface; static loadJsonFile(jsonFilePath: string, driver?: DriverInterface): Promise; }