/** * Command options for the logout command */ export type LogoutOptions = Record; /** * Removes all OpenZiti MCP related tokens from the system keychain * * @param {LogoutOptions} _options - Command options from commander (unused) * @returns A promise that resolves when logout is complete */ declare function logout(_options?: LogoutOptions): Promise; export default logout;