interface CommandInformation { id: string; type: string; workspace: string; command: string; status: string; out: string; } export declare function createWorkspaceContext(readSettings: Function, commandInfos: CommandInformation[], workspace: string): Promise; export {};