import { Input, QuickPickItem } from "../../.."; /** * Plain input box variation of the input page object */ export declare class InputBox extends Input { constructor(); /** * Construct a new InputBox instance after waiting for its underlying element to exist * Use when an input box is scheduled to appear. * @param timeout max time to wait in milliseconds, default 5000 */ static create(timeout?: number): Promise; /** * Get the message below the input field */ getMessage(): Promise; hasProgress(): Promise; getQuickPicks(): Promise; getCheckboxes(): Promise; /** * Find whether the input is showing an error * @returns Promise resolving to notification message */ hasError(): Promise; /** * Check if the input field is masked (input type password) * @returns Promise resolving to notification message */ isPassword(): Promise; }