import { ClipboardPasteSegment } from './types'; /** Unique data-URI image sources from HTML clipboard content. */ export declare function extractDataUriImagesFromHtml(html: string): string[]; /** Remove data-URI `` tags from HTML, leaving other content. */ export declare function stripDataUriImagesFromHtml(html: string): string; /** Ordered clipboard segments preserving text/image interleaving from HTML (nested images included). */ export declare function extractOrderedSegmentsFromHtml(html: string): ClipboardPasteSegment[];