import { type Ref, type ComponentPublicInstance } from "vue"; export declare function useScalePrintContent(containerRef: Ref, contentElementRef: Ref, scaleElementRef: Ref, pageSizeRef: Ref<{ width: string; height: string; }>): { refreshStyle: import("lodash").DebouncedFunc<() => Promise>; retrieveScaleStyle: (contentEl: HTMLElement, scaleEl: HTMLElement) => void; }; /** * 等待所有图片加载完成 * @param contentEl */ export declare function waitAllImageLoaded(contentEl: HTMLElement): Promise;