import { IClientTokenResponse } from '../../types/index.js'; import { ClientTokenStatus } from '../../enums/index.js'; export declare class ClientToken { readonly id: string; readonly token: string; readonly name: string; readonly description: string | null; readonly status: ClientTokenStatus; readonly createdAt: string; readonly updatedAt: string; readonly revokedAt: string | null; constructor(clientToken: IClientTokenResponse); }