import type { DynatraceApplicationManifest, AppManifestSchema } from '../../interfaces';
/**
 * Validates constructed manifest against the app manifest schema.
 */
export declare function validateManifest(environmentUrl: string, manifest: DynatraceApplicationManifest): Promise<DynatraceApplicationManifest>;
/** Fetches the app manifest schema from the backend for validating the constructed manifest. */
export declare function fetchAppManifestSchema(environmentUrl: string): Promise<AppManifestSchema>;
