import { ReactElement } from 'react'; import './index.css'; declare type Props = { children?: ReactElement; }; declare const EditorLayer: ((props: Props) => JSX.Element) & { displayName: string; }; export default EditorLayer;