export declare function downFile(content: any, filename: any): void; export declare function waitUntilElementExist(selectors: any, xpaths?: any[], timeout?: number, checkInterval?: number): Promise; export declare function scrollAndExecute({ scrollContainer, scrollHeight, scrollInterval, fn, scrollTimeout, scrollStopFn, }: { scrollContainer: any; scrollHeight?: number; scrollInterval?: number; fn: any; scrollTimeout?: number; scrollStopFn?: any; }): Promise; export declare function loadScript(url: any, callback: any): void; export declare function openNewTab(url: string): void; export declare function getUidFromLocalStorage(): string; export declare function getCanvas({ w, h, ratio, canvasEl, text, x, y, fillStyle }: { w?: number; h?: number; ratio?: number; canvasEl: any; text: any; x?: number; y?: number; fillStyle?: any; }): any;