/** * Default configuration values */ import type { Config } from "./schema.js"; /** * Get the default backup directory * Uses platform-specific cache path + backups/ */ export declare function getDefaultBackupDirectory(): string; /** * Get the default library path * Uses platform-specific data path + library.json */ export declare function getDefaultLibraryPath(): string; /** * Get the default user config path * Uses platform-specific config path + config.toml */ export declare function getDefaultUserConfigPath(): string; /** * Get the default current directory config filename * Uses .reference-manager.config.toml */ export declare function getDefaultCurrentDirConfigFilename(): string; /** * Get the default CSL directory * Uses platform-specific data path + csl/ */ export declare function getDefaultCslDirectory(): string; /** * Get the default attachments directory * Uses platform-specific data path + attachments/ */ export declare function getDefaultAttachmentsDirectory(): string; /** * Default configuration */ export declare const defaultConfig: Config; //# sourceMappingURL=defaults.d.ts.map