import type { CSSProperties } from 'react';
export interface MarkdownRendererProps {
    content: string;
    className?: string;
    style?: CSSProperties;
}
export declare function MarkdownRenderer({ content, className, style }: MarkdownRendererProps): import("react/jsx-runtime").JSX.Element;
