import { Credentials, FlpConfig, Project as ProjectData } from "../models/Types"; import type { Manifest as ManifestModel } from "@sap-ux/project-access"; export default class Manifest { private static credentials; static setCredentials(credentials: Credentials): void; static get(projectData: ProjectData): Promise; static getManifestInboundIds(manifest: ManifestModel): string[]; static getAdpProjectManifestInboundId(projectPath: string): string | undefined; static getFlpConfig(projectPath: string): Promise; }