export interface HashMap { [key: string]: T; } export declare type Terminal = string[]; export declare type Terminals = HashMap; export interface Options { commandTemplate: string; cwd: string; terminals: Terminals; }