import { type IUrlModel, type IUrlModelDto } from "../abstractions/models/index.js"; export declare class UrlModel implements IUrlModel { private value; constructor(value: string); join(...paths: string[]): UrlModel; toString(): string; toDto(): IUrlModelDto; static from(value: string | IUrlModelDto | UrlModel): UrlModel; }