import { EditorApp, EditorAppOptions } from './editorApp'; import { LiveEditorApiComponent } from '../../editor/api'; import { ServerApiComponent } from '../api'; export interface GitHubEditorAppOptions extends EditorAppOptions { organization?: string; project?: string; branch?: string; } export declare class GitHubEditorApp extends EditorApp { options?: GitHubEditorAppOptions; protected _api: (LiveEditorApiComponent & ServerApiComponent) | null; constructor(container: HTMLElement, options?: GitHubEditorAppOptions); get api(): LiveEditorApiComponent & ServerApiComponent; }