import type { PropsWithChildren } from 'react';
export type MarkdownProps = PropsWithChildren<{
    className?: string;
    compact?: boolean;
    inline?: boolean;
    base?: boolean;
    ref?: (node: HTMLDivElement) => void;
}>;
export declare const Markdown: import("styled-components").StyledComponent<"main", any, MarkdownProps, never>;
