/** * -------------------------------------------------------------------- * 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. * -------------------------------------------------------------------- */ /** * Extracts a quoted title (e.g., "My Title") and an optional icon (e.g., icon:rocket) from a string. * This is the standard parser for docmd containers (callouts, cards, tabs, etc.) * * @param {string} info - The raw info string to parse * @returns {{ title: string, icon: string }} */ export declare function parseTitleAndIcon(info: any): { title: any; icon: string; };