/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Reads a configuration setting from `localStorage` in the browser or `process.env` in Node.js. * * @remarks * - Browser storage access failures are ignored and treated as an empty value. */ export declare function getSetting(name: string): string;