/** * Wait for a certain css selector to be loaded. Make sure that the selector can be loaded before calling it. Otherwise, retryCount should be passed in. * @param selector css selector */ export declare const waitElement: (selector: string, { time, wrapper, retryCount, }?: { time?: number; wrapper?: Document | Element; retryCount?: number; }) => Promise;