import { type UiManifest } from './schema.js'; export interface BuildModuleUiResult { manifest: UiManifest; registryPath: string; entryPath: string; removedScreens: string[]; } /** Validate root ui/, generate its runtime registry, and synchronize entry.json. */ export declare function buildModuleUi(projectRoot?: string): Promise;