import type { FileItemDto } from "./FileItemDto.js"; export declare class FileItem { private readonly _id; private readonly _name; private readonly _url; private readonly _mimeType; private readonly _size; protected constructor(data: { id: string; name: string; url: string; mimeType: string; size: number; }); static create(data: FileItemDto): FileItem; static createFromUrl(url: string): FileItem; get id(): string; get name(): string; get url(): string; get size(): number; get mimeType(): string; private static getDefaultMimeType; }