declare function waitForElement(selector: string, { timeout }?: {
    timeout?: number | undefined;
}): Promise<Element>;

export { waitForElement };
