import { TokenModel } from '../@core'; import { ActiveToken } from '../types'; import { DBService } from './db-service'; export declare class TokenService { private dbService; constructor(dbService: DBService); generateToken(label: string): Promise; disableToken(id: string): Promise; getActiveToken(token: string): TokenModel | undefined; getActiveTokens(): ActiveToken[]; }