/** * Copyright (c) Siemens 2016 - 2025 * SPDX-License-Identifier: MIT */ import 'dotenv/config'; /** * Sets the API token for MCP server * @param token - The API token to store securely * @returns Promise */ export declare const setToken: (token: string) => Promise; /** * Gets the stored API token for MCP server * @returns Promise - The stored token or undefined if not found */ export declare const getToken: () => Promise; /** * Removes the stored API token for MCP server * @returns Promise - True if token was deleted successfully */ export declare const deleteToken: () => Promise; //# sourceMappingURL=token.d.ts.map