export declare class Attachment { /** * Unique identifier for the comment pin annotation. * * Auto generated. */ attachmentId: number; /** * File name */ name?: string; /** * Unique path in storage */ bucketPath?: string; /** * File size */ size?: number; /** * File type */ type?: string; /** * Download url of a file */ url?: string; /** * Thumbnail img in base64 format */ thumbnail?: string; /** * Metadata of an attachment */ metadata?: any; /** * Mime type of an attachment */ mimeType?: any; }