import { AADApplication } from "../interface/AADApplication"; import { AADManifest } from "../interface/AADManifest"; import { FxError, Result } from "@microsoft/teamsfx-api"; export declare class AadManifestHelper { static manifestToApplication(manifest: AADManifest | AADApplication): AADApplication; static applicationToManifest(app: AADApplication): AADManifest; static validateManifest(manifest: AADManifest | AADApplication): string; static processRequiredResourceAccessInManifest(manifest: AADManifest | AADApplication): void; static isNewAADManifestSchema(manifest: AADManifest | AADApplication): boolean; static showWarningIfManifestIsOutdated(manifestTemplatePath: string, projectPath: string): Promise; static convertManifestToNewSchemaAndOverride(manifestTemplatePath: string, projectPath: string): Promise>; } //# sourceMappingURL=aadManifestHelper.d.ts.map