import { FieldEditor } from '../types.js'; import { OxGristEditor } from './ox-grist-editor.js'; export declare function registerEditor(type: string, editor: { new (): OxGristEditor; }): void; export declare function unregisterEditor(type: string): void; export declare function getEditors(): { [name: string]: { new (): OxGristEditor; }; }; export declare function getEditor(type: string): FieldEditor;