import { CodeEditorProps } from "./CodeEditor"; export declare type MarkdownEditorProps = { allowPreview?: boolean; locale?: { preview: string; edit: string; }; } & Omit; export declare const MarkdownEditor: ({ lineNumbers, value, onChange, variant, allowPreview, locale, height, ...props }: MarkdownEditorProps) => import("@emotion/react/jsx-runtime").JSX.Element;