interface Props {
    value: string;
    onChange?: (newValue: string) => void;
    style?: any;
    textAlign?: "left" | "center" | "right";
    placeholder?: string;
}
export declare function MarkdownEditor({ value: markdownString, onChange, style, textAlign, placeholder }: Props): import("react/jsx-runtime").JSX.Element;
export {};
