import type { ImageToken } from '../inlineRenderer/types'; export interface IImageInfo { token: ImageToken; imageId: string; } export declare function getImageInfo(image: HTMLElement): IImageInfo; export declare const getImageSrc: (src: string) => { isUnknownType: boolean; src: string; }; export declare const loadImage: (url: string, detectContentType?: boolean) => Promise<{ url: string; width: number; height: number; }>; export declare const checkImageContentType: (url: string) => Promise; export declare const correctImageSrc: (src: string) => string;