#!/usr/bin/env node import type { Config } from "./types"; /** * Find Git root directory */ export declare const findGitRoot: () => string; /** * Load configuration file (js/ts) from current dir or Git root. */ export declare const loadConfigFile: () => Promise>; /** * Write a starter config file */ export declare const initConfig: (targetDir: string) => void; /** * CLI argument parser (minimal, no external deps). */ export declare const parseArgs: (argv: string[]) => { overrides: Partial; init?: boolean; restore?: string; gitMergeFiles?: [string, string, string]; };