/** * Props for the InlineMarkdown component * @property {string} [value] - The markdown string to parse and render */ export interface InlineMarkdownProps { value?: string; } /** * Renders a string with limited inline markdown constructs as formatted React content. * * Features: * - Bold: `**text**` * - Italic: `*text*` * - Bold and italic: `***text***` * - Highlight: `==text==` * - Inline code: `` `text` `` * - Memoized rendering for performance * - Passes through plain strings with no overhead * * @example * */ export declare const InlineMarkdown: ({ value }: InlineMarkdownProps) => import("react/jsx-runtime").JSX.Element;