type VariableType = string | number | boolean; type VariablesTypeName = Record; export declare class GecutEnvVM { constructor(appName: string, variables: T); appName: string; private variables; private variablesName; get(variableName: K): T[K]; set(variableName: K, value: T[K] | ((old: T[K]) => T[K])): void; remove(variableName: keyof T): void; } export {}; //# sourceMappingURL=envvm.d.ts.map