import type { AnchorProps } from 'antd'; import { CSSProperties } from 'react'; import { type ImageProps } from "../mdx/Image"; import type { PreProps } from "../mdx/Pre"; import { type VideoProps } from "../mdx/Video"; import type { AProps } from "../types"; import type { TypographyProps } from './Typography'; export interface MarkdownProps extends TypographyProps { allowHtml?: boolean; children: string; className?: string; componentProps?: { a?: Partial; img?: Partial; pre?: Partial; video?: Partial; }; enableImageGallery?: boolean; enableLatex?: boolean; fullFeaturedCodeBlock?: boolean; onDoubleClick?: () => void; style?: CSSProperties; variant?: 'normal' | 'chat'; } declare const Markdown: import("react").NamedExoticComponent; export default Markdown;