import { FieldType } from '../enums/FieldType.js'; /** * @class FileInfo - Represents a file info. */ export declare class FileInfo { /** * @property {FieldType} type - The type of the file. */ type: FieldType; /** * @property {string} contentType - The content type of the file. */ contentType: string; /** * @property {string} name - The name of the file. */ name: string; /** * @property {Date} createdDate - The created date of the file. */ createdDate: Date; /** * @property {Date} modifiedDate - The modified date of the file. */ modifiedDate: Date; /** * @property {string} owner - The owner of the file. */ owner: string; /** * @property {string} notes - The notes of the file. */ notes: string; /** * @property {string} fileHref - The href of the file. */ fileHref: string; constructor(type: string, contentType: string, name: string, createdDate: Date, modifiedDate: Date, owner: string, notes: string, fileHref: string); }