/** * Configuration module * * Provides configuration loading and management for reference-manager. */ export type { Config, LogLevel, BackupConfig, WatchConfig, PartialConfig, DeepPartialConfig, } from "./schema.js"; export { configSchema, logLevelSchema, backupConfigSchema, watchConfigSchema, partialConfigSchema, normalizePartialConfig, } from "./schema.js"; export { defaultConfig, getDefaultBackupDirectory, getDefaultLibraryPath, getDefaultUserConfigPath, getDefaultCurrentDirConfigFilename, } from "./defaults.js"; export { loadConfig, type LoadConfigOptions } from "./loader.js"; //# sourceMappingURL=index.d.ts.map