import type { TokenContext, TokenFileContent } from './get-bearer-token';
import { TokenValidity } from './get-bearer-token';
/** Validates the token */
export declare function validateToken(bearerTokenContext: TokenContext): Promise<TokenValidity>;
/** Writes all the token information to the tokens.json file */
export declare function writeTokenFile(tokenFilePath: string, fileContent: TokenFileContent): void;
