import type { CollectionWithDefaults, Entry, MarkdownField, WidgetControlProps } from '@staticcms/core'; import type { FC } from 'react'; import type { MdValue } from './plateTypes'; export interface PlateEditorProps { initialValue: MdValue; collection: CollectionWithDefaults; entry: Entry; field: MarkdownField; useMdx: boolean; controlProps: WidgetControlProps; onChange: (value: MdValue) => void; onFocus: () => void; onBlur: () => void; } declare const PlateEditor: FC; export default PlateEditor;