import { type IAppModel, type IAppModelDto } from "../abstractions/models/index.js"; import { type GetApp } from "../abstractions/index.js"; export declare class AppModel implements IAppModel { readonly name: GetApp.AppName; readonly paths: IAppModel["paths"]; private constructor(); getDisplayName(): string; static fromDto(dto: IAppModelDto): IAppModel; }