import { BackendFileRef } from "../datastore/BackendFileRef"; export declare type IImageRel = 'screenshot' | 'thumbnail' | 'highlight' | string; export interface IImage { readonly id: string; readonly type: ImageType; readonly src: BackendFileRef; readonly width?: number; readonly height?: number; readonly rel?: IImageRel; } export declare type ImageType = 'image/png' | 'image/jpeg' | 'image/webp' | 'image/gif' | 'image/svg+xml' | 'image/avif' | 'image/apng';