/** * -------------------------------------------------------------------- * docmd : the zero-config documentation engine. * * @package @docmd/core (and ecosystem) * @website https://docmd.io * @repository https://github.com/docmd-io/docmd * @license MIT * @copyright Copyright (c) 2025-present docmd.io * * [docmd-source] - Please do not remove this header. * -------------------------------------------------------------------- */ /** * Returns the absolute path to the requested theme CSS file. * @param {string} themeName - 'sky', 'retro', 'ruby' * @returns {string} Absolute path to css file */ declare function getThemePath(themeName: string): string; /** * Returns the directory containing all themes */ declare function getThemesDir(): string; export { getThemePath, getThemesDir };