/** * Platform-specific paths using env-paths * * Returns XDG-compliant paths on Linux, standard paths on macOS/Windows */ export interface Paths { config: string; data: string; cache: string; } /** * Get platform-specific paths for config, data, and cache directories * * - Linux: XDG Base Directory Specification (~/.config, ~/.local/share, ~/.cache) * - macOS: ~/Library/Preferences, ~/Library/Application Support, ~/Library/Caches * - Windows: %APPDATA%, %LOCALAPPDATA% */ export declare function getPaths(): Paths; //# sourceMappingURL=paths.d.ts.map