export interface ProjectMeta { name: string; prefix: string; } /** * Read project.name and project.prefix from a `.forge/config.json` path. * Returns null when the file is missing, unreadable, malformed, or lacks * the required fields. Never throws. */ export declare function readProjectMeta(configPath: string): ProjectMeta | null;