import { type IWcpUserModel, type IWcpUserDto } from "../abstractions/models/index.js"; export declare class WcpUserModel implements IWcpUserModel { id: string; email: string; firstName: string; lastName: string; orgs: Array<{ id: string; name: string; }>; projects: Array<{ id: string; name: string; org: { id: string; name: string; }; }>; private constructor(); static fromDto(dto: IWcpUserDto): IWcpUserModel; }