export interface IGlobalConfig { connectionCachesPath: string; taskRelationsCachesPath: string; logPath: string; taskCachesPath: string; pullerCachesPath: string; pusherCachesPath: string; tableCachesPath: string; reportCachesPath: string; schemaCachesPath: string; configPath: string; taskAssociationsFilePath: string; mainFilePath: string; variablesFilePath: string; currentCluster: string; currentProject: string; componentPath: string; clusters: { [key: string]: { jwt: { accessToken: string; refreshToken: string; }; user: { id: string; email: string; firstName: string; lastName: string; }; }; }; }