import { AutocompleteEditor, EDITOR_TYPE as AUTOCOMPLETE_EDITOR } from './autocompleteEditor'; import { BaseEditor, EDITOR_TYPE as BASE_EDITOR } from './baseEditor'; import { CheckboxEditor, EDITOR_TYPE as CHECKBOX_EDITOR } from './checkboxEditor'; import { DateEditor, EDITOR_TYPE as DATE_EDITOR } from './dateEditor'; import { DropdownEditor, EDITOR_TYPE as DROPDOWN_EDITOR } from './dropdownEditor'; import { HandsontableEditor, EDITOR_TYPE as HANDSONTABLE_EDITOR } from './handsontableEditor'; import { IntlDateEditor, EDITOR_TYPE as INTL_DATE_EDITOR } from './intlDateEditor'; import { IntlTimeEditor, EDITOR_TYPE as INTL_TIME_EDITOR } from './intlTimeEditor'; import { NumericEditor, EDITOR_TYPE as NUMERIC_EDITOR } from './numericEditor'; import { PasswordEditor, EDITOR_TYPE as PASSWORD_EDITOR } from './passwordEditor'; import { SelectEditor, EDITOR_TYPE as SELECT_EDITOR } from './selectEditor'; import { TextEditor, EDITOR_TYPE as TEXT_EDITOR } from './textEditor'; import { TimeEditor, EDITOR_TYPE as TIME_EDITOR } from './timeEditor'; import { MultiSelectEditor } from './multiSelectEditor'; export { EDITOR_TYPE as MULTI_SELECT_EDITOR } from './multiSelectEditor'; /** * Registers all available editors. */ export declare function registerAllEditors(): void; export { AutocompleteEditor, AUTOCOMPLETE_EDITOR, BaseEditor, BASE_EDITOR, CheckboxEditor, CHECKBOX_EDITOR, DateEditor, DATE_EDITOR, DropdownEditor, DROPDOWN_EDITOR, HandsontableEditor, HANDSONTABLE_EDITOR, IntlDateEditor, INTL_DATE_EDITOR, IntlTimeEditor, INTL_TIME_EDITOR, NumericEditor, NUMERIC_EDITOR, PasswordEditor, PASSWORD_EDITOR, SelectEditor, SELECT_EDITOR, TextEditor, TEXT_EDITOR, TimeEditor, TIME_EDITOR, MultiSelectEditor, }; export { RegisteredEditor, _getEditorInstance, getEditor, getEditorInstance, getRegisteredEditorNames, getRegisteredEditors, hasEditor, registerEditor, } from './registry'; export { editorFactory } from './factory'; /** * All built-in editor type names. */ export type EditorType = typeof AUTOCOMPLETE_EDITOR | typeof BASE_EDITOR | typeof CHECKBOX_EDITOR | typeof DATE_EDITOR | typeof DROPDOWN_EDITOR | typeof HANDSONTABLE_EDITOR | typeof INTL_DATE_EDITOR | typeof INTL_TIME_EDITOR | typeof NUMERIC_EDITOR | typeof PASSWORD_EDITOR | typeof SELECT_EDITOR | typeof TEXT_EDITOR | typeof TIME_EDITOR | string;