/** * Class to manage API keys. * * @class KeyManager * @export */ export declare class KeyManager { private static _instance; private _apiKey?; private constructor(); static get instance(): KeyManager; get apiKey(): string; set apiKey(apiKey: string); }