import type * as Plate from './plate'; import type { PhrasingContent } from 'mdast'; import type { MdxJsxAttribute, MdxJsxExpressionAttribute, MdxJsxTextElement } from 'mdast-util-mdx-jsx'; export declare const getHighlightColorFromAttributes: (attributes?: (MdxJsxAttribute | MdxJsxExpressionAttribute)[]) => string | undefined; export declare const parseMarkMdxText: (content: MdxJsxTextElement & { children?: TChild[]; }, extraMarks?: Record, parseChild?: (child: TChild) => Plate.InlineElement | Plate.InlineElement[]) => Plate.InlineElement[] | null;