import { type IWcpUserPatModel, type IWcpUserPatDto } from "../abstractions/models/index.js"; export declare class WcpUserPatModel implements IWcpUserPatModel { name: string; meta: Record; token: string; expiresOn: string | null; user: { email: string; }; private constructor(); static fromDto(dto: IWcpUserPatDto): WcpUserPatModel; }