import { ParsedCommandsInterface, ParsedFileCommandsInterface, StdoutCommandsInterface } from "./ParsedCommandsInterface"; import { AbstractStore } from "../utils/AbstractStore"; import { StdoutCommandInterface } from "../stdout/stdoutCommands"; export declare class CommandsStore extends AbstractStore { static create(stdoutCommands: StdoutCommandsInterface, fileCommands: ParsedFileCommandsInterface): CommandsStore; constructor(); applyAndMerge(changes: Partial): this; addStdoutCommand(cmd: StdoutCommandInterface): this; } //# sourceMappingURL=CommandsStore.d.ts.map