import { IActionItem, IEditorDisplayActionButton, IEditorTabRenderer } from "."; export interface IEditorTabRegistration { tabId: string; tabRenderer: IEditorTabRenderer; tabName: string; active: boolean; actionToolbar: { editorDisplayActionButtons: Array; checkedOutButtons: Array; checkedOutExtendedActionButtons: Array; notCheckedOutActionButtons: Array; notCheckOutExtendedActionButtons: Array; }; }