BuildInActions: {
    base.find-in-repository: ((query?: FindInRepositoryQuery) => void);
    base.switch-repository-0: (() => void);
    base.switch-repository-1: (() => void);
    base.switch-repository-2: (() => void);
    base.switch-repository-3: (() => void);
    base.switch-repository-4: (() => void);
    base.switch-repository-5: (() => void);
    base.switch-repository-6: (() => void);
    base.switch-repository-7: (() => void);
    base.switch-repository-8: (() => void);
    base.switch-repository-9: (() => void);
    control-center.refresh: (() => void);
    control-center.toggle: ((visible?: boolean) => void);
    doc.hide-history: (() => void);
    doc.show-history: ((doc?: Doc) => void);
    editor.refresh-custom-editor: (() => void);
    editor.toggle-wrap: (() => void);
    editor.trigger-save: (() => void);
    extension.show-manager: ((id?: string) => void);
    file-tabs.close-current: (() => void);
    file-tabs.close-tabs: ((keys: string[]) => void);
    file-tabs.refresh-action-btns: (() => void);
    file-tabs.search-tabs: (() => void);
    file-tabs.switch-left: (() => void);
    file-tabs.switch-right: (() => void);
    filter.choose-document: (() => Promise<Doc>);
    keyboard-shortcuts.show-manager: ((id?: string) => void);
    layout.toggle-editor: ((visible?: boolean) => void);
    layout.toggle-side: ((visible?: boolean) => void);
    layout.toggle-view: ((visible?: boolean) => void);
    layout.toggle-xterm: ((visible?: boolean) => void);
    plugin.document-history-stack.back: (() => void);
    plugin.document-history-stack.forward: (() => void);
    plugin.electron-zoom.zoom-in: (() => void);
    plugin.electron-zoom.zoom-out: (() => void);
    plugin.electron-zoom.zoom-reset: (() => void);
    plugin.image-hosting-picgo.upload: ((file: File) => Promise<string | undefined>);
    plugin.image-localization.download-all: (() => void);
    plugin.status-bar-help.show-features: (() => void);
    plugin.status-bar-help.show-plugin: (() => void);
    plugin.status-bar-help.show-readme: (() => void);
    plugin.switch-todo.switch: ((line?: number, checked?: boolean) => void);
    premium.show: ((tab?: PremiumTab) => void);
    status-bar.refresh-menu: (() => void);
    tree.refresh: (() => void);
    tree.reveal-current-node: (() => void);
    view.enter-presentation: (() => void);
    view.exit-presentation: (() => void);
    view.get-content-html: ((selected?: boolean) => string);
    view.get-render-env: (() => RenderEnv | null);
    view.get-view-dom: (() => HTMLElement | null);
    view.refresh: (() => void);
    view.render: (() => void);
    view.render-immediately: (() => void);
    view.reveal-line: ((startLine: number) => Promise<HTMLElement | null>);
    view.show-find-in-preview: (() => void);
    workbench.show-quick-open: (() => void);
    workbench.toggle-outline: ((visible?: boolean) => void);
    xterm.init: ((opts?: {
        cwd?: string;
    }) => void);
    xterm.run: ((cmd: {
        code: string;
        exit?: string;
        start: string;
    } | string) => void);
}