import { EditorMode, UiModule } from '../../types';
export interface EditorPanels extends UiModule {
    /**
     * The Editor's mode list where the module will be available.
     */
    modes: EditorMode[];
    /**
     * Defines if the module supports multiple strings at once.
     */
    supportsMultipleStrings: boolean;
}
