/** * Interface for a personal setting value provider * @interface ISettingValueProvider */ export declare abstract class ISettingValueProvider { constructor(); /** * Gets the current setting value. * @returns {string} The current setting value. */ getValue(): string; /** * Sets the setting value. * @param {string} value - The new setting value. */ setValue(value: string): void; }