import React from 'react';
import 'bytemd/dist/index.min.css';
import 'highlight.js/styles/vs.css';
import './index.css';
interface IProps {
    link: string;
    getHtml: (html: any) => void;
}
declare const ByteMD: React.FC<IProps>;
export default ByteMD;
