/**
 * Function to open a certain url and close it after some time has passed
 * @param url url to open on a new window | tab
 * @param timeToClose time in milliseconds to wait before closing automatically the window
 */
export declare function openAndCloseWindow(url?: string, timeToClose?: number): void;
