import { Manifest } from "../manifest.js"; import { TestComponentTypes } from "./types.js"; /** * Creates project core assets in-memory, with the components requested, and returns the resulting manifest * Useful for stubbing projects for testing purposes */ export default function createTestProjectManifest(projectName: string, /** test components to add */ components: TestComponentTypes[]): Promise;