import { Schema } from '@data-driven-forms/react-form-renderer'; export interface UseEditorProps { initialSchema?: Schema; } declare function useEditor(props?: UseEditorProps): [any, any]; export default useEditor;