import { FileRetrieve } from '../../../types/openapi'; export declare const EMITS: string[]; export type AnnotationType = 'text' | 'drawing' | 'freeformHighlight' | 'textHighlight' | 'eraser' | 'link'; export interface FileModel extends FileRetrieve { isDeleted: boolean; } export interface ShareboxItem { id: string; fileId: FileRetrieve['id']; name: FileRetrieve['name']; type: 'file' | 'page'; pageIndex?: number; thumbnailUrl?: string; }