type EditorInputProps = { name: string; value: any; values?: Array; onChange?: (value: any) => void; }; declare const EditorInput: (props: EditorInputProps) => null; export default EditorInput;