import { DialogValues, InputAction, GenericQuickPickOptions } from "../.."; import { GenericQuickPick } from "./AbstractQuickPick"; export declare namespace QuickPick { /** * The options that should be used for any normal quick pick. */ interface QuickPickOptions extends GenericQuickPickOptions { /** * If the UI should stay open even when loosing UI focus. Defaults to false. * This setting is ignored on iPad and is always false. */ readonly ignoreFocusOut?: boolean; } } /** * Any quick pick that does not require any sort of loading. */ export declare class QuickPick extends GenericQuickPick { /** * @override */ showDialog(currentResults: DialogValues, title: string, showBackButton: boolean): Promise; }