import Session from './session'; import HTTPClient from './httpclient'; declare class Alert { s: Session; http: HTTPClient; constructor(session: Session); private exists(); private text(); wait(timeout?: number): Promise; accept(): Promise; dismiss(): Promise; buttons(): Promise; /** * @param name the name of the button */ click(name: string): Promise; } export default Alert;