import { Option } from '../types'; export interface WaitElementOptions { parent?: Option; timeout?: Option; } export declare function waitElement(selector: string, options?: WaitElementOptions): Promise;