/** * Strips inline markdown syntax from a string, returning plain text. * Intended for accessibility contexts (e.g. `aria-label`) where only plain text is appropriate. * * @param str - The string to strip * @returns The string with all inline markdown syntax removed */ export declare const stripInlineMarkdown: (str: string) => string;