import { type MarkdownProps } from '@lobehub/ui';
import React from 'react';
import { ThinkProps } from './MarkdownElements/AntThinking/Component';
export interface ChatMarkdownProps extends MarkdownProps {
    customComponentProps?: {
        think?: Partial<ThinkProps>;
        [k: string]: any;
    };
}
export declare const ChatMarkdown: React.FC<ChatMarkdownProps>;
