/** * Retrieves a key if it exist in the file system * @returns {Promise} A promise w/ the key value */ export declare function get(): Promise; /** * Sets a key in the file system * * @param {string} apiKey The key that should be set * @returns {Promise} A promise with the value of the key that was set */ export declare function set(apiKey: string): Promise; /** * Clears a key if it exist in the file system * @returns {Promise} A promise that resolves to void */ export declare function clear(): Promise;