import { IUserRead } from 'temporary-rocketlets-ts-definition/accessors'; import { IUser } from 'temporary-rocketlets-ts-definition/users'; import { IUserBridge } from '../bridges/IUserBridge'; export declare class UserRead implements IUserRead { private userBridge; private rocketletId; constructor(userBridge: IUserBridge, rocketletId: string); getById(id: string): IUser; getByUsername(username: string): IUser; }