export type ImageExtra = {
    jumpUrl?: string;
};
/**
 * 获取 html 元素的内容，并转换为可以复制粘贴的 html string
 */
export declare function transformHtml({ elements, imageExtra, replaceType, }: {
    elements: HTMLCollectionOf<Element> | HTMLElement[];
    replaceType?: 'image' | 'text' | 'none';
    imageExtra?: ImageExtra;
}): Promise<string>;
