export interface AugmentConfig { memoryRoot: string; stateDir: string; databasePath: string; daemonFile: string; daemonPort?: number; /** * When the memory root is a git repo, auto-commit augment's own writes. Default * on; consumers read it as `gitAutocommit !== false` so an omitted field means on. */ gitAutocommit?: boolean; } /** Resolves a config-file path value the same way for every entrypoint: expand a leading `~`, then absolutize. */ export declare function absolutePath(value: string): string; export declare function loadConfig(): Promise; export declare function ensureConfigDirs(config: AugmentConfig): Promise;