/// declare interface EditorPropsType { editable: boolean; onChange: (change: string) => void; } declare function Editor(props: EditorPropsType): JSX.Element; export default Editor;