declare const loadResource: (param: any) => Promise; declare const waitFor: (ms: any) => Promise; declare const forEach: (array: any, callback: any) => Promise; declare const convertDataURIToBinary: (dataURI: any) => Uint8Array; declare const asyncFileReader: (file: any) => Promise; declare const updateSrcItemPdfInfo: (item: any) => Promise; declare const updateSrcItemsPdfInfo: (items: any[]) => Promise; /** * merge multi PDFs in one dataUri * @param {Array} pdfs * @param {Array} sortIds * @returns {string} - dataUri */ declare const mergePdfs: (pdfs: any, sortIds: any) => Promise; declare const getScreenshot_V2: (selector?: string) => Promise; declare const getScreenShot_V3: () => void; declare const getScreenshot: (selector?: string) => Promise; export { loadResource, waitFor, forEach, updateSrcItemPdfInfo, updateSrcItemsPdfInfo, mergePdfs, convertDataURIToBinary, asyncFileReader, getScreenshot, getScreenshot_V2, getScreenShot_V3 };