export type ConfVar = {
/**
* The name of the configuration variable.
*/
name: string;
/**
* The value of the configuration variable.
*/
value: any;
/**
* The default value of the configuration variable.
*/
default_value: any;
};
//# sourceMappingURL=ConfVar.d.ts.map