import { BaseCommand } from "@tandem/common"; import { IEditorMasterConfig } from "../config"; import { EditorMasterStore } from "../stores"; export declare abstract class BaseEditorMasterCommand extends BaseCommand { protected readonly config: IEditorMasterConfig; protected readonly store: EditorMasterStore; }