import { UserBusinessSecretEntity } from '../entities/user.business.secret.entity'; export interface UserSecretProjection { id: number; name: string; client_id: string; access_scopes: string[]; active: boolean; created_at: Date | string; last_activity_at: Date | string; } export declare class UserSecretView { static readonly MASK_CHARS = 8; static project(row: UserBusinessSecretEntity | Record): UserSecretProjection; static maskClientId(clientId: string): string; }