import { FC } from 'react'; type MarkdownInputProps = { value: string; onChange: (newValue: string) => void; }; declare const MarkdownInput: FC; export default MarkdownInput; //# sourceMappingURL=index.d.ts.map