export interface GeneratedArtifactsPayload { activeAdapterSource: string; generatedConfigSource: string; runtimeBindingSource: string; bootstrapRuntimeSource: string; } export declare function materializeGeneratedArtifacts(options: { outputDir: string; artifacts: GeneratedArtifactsPayload; }): Promise<{ outputDir: string; files: string[]; }>;