export declare const INITIAL_CONFIG_CONTENT = "{\n // Record the rationale beside any temporary exception or disabled policy.\n \"fail_on\": \"high\",\n \"format\": \"text\"\n}\n"; type InitState = "created" | "primary-existing" | "json-existing" | "legacy-existing" | "conflicting"; interface InitResult { state: InitState; primaryPath: string; existingPaths: string[]; } /** Initialize repository-level Renma configuration without touching assets. */ export declare function initializeRepository(root: string): Promise; /** Run the repository initialization command and render its human output. */ export declare function runInitCommand(root: string): Promise; export {};