import React from "react";
interface Props {
    hideModal: () => void;
    onChange: (newValue: string) => void;
    value?: string;
}
export declare const MarkdownModal: React.FC<Props>;
export {};
