import { Input, QuickPickItem } from "../../.."; /** * @deprecated as of VS Code 1.44.0, quick open box has been replaced with input box * The quick open box variation of the input */ export declare class QuickOpenBox extends Input { constructor(); /** * Construct a new QuickOpenBox instance after waiting for its underlying element to exist * Use when a quick open box is scheduled to appear. */ static create(): Promise; hasProgress(): Promise; getQuickPicks(): Promise; }