/** * Obfuscates a token for logging purposes by showing only the first and last few characters * @param token The token to obfuscate * @returns The obfuscated token string */ export declare function obfuscateToken(token: string): string; export declare const TOKEN_KEY = "token";