import { FC } from 'react';
import { TypographyProps } from '../Typography/Typography.js';

type MarkdownProps = {
    typographyProps?: Partial<TypographyProps>;
    children?: string;
};
declare const Markdown: FC<MarkdownProps>;

export { Markdown as default };
export type { MarkdownProps };
