import { Driver } from '.'; import { InteractionHelper } from './interactionHelper'; export declare class InquirerInteractionHelper extends InteractionHelper { protected client: Driver; constructor(client: Driver); focusFile(codeFix: string): Promise; focusListItem(label: string): Promise; focusCheckboxListItem(label: string): Promise; down(n: number): Promise; arrowUntilFocused(client: Driver, focused: string, predicate: (s: string) => boolean, arrow?: string, limit?: number): Promise; unSelectAll(limit?: number): Promise; currentNotSelected(): Promise; currentNotSelectedString(s: string): string; selected(): Promise; isCodeFixOptionNotSelected(option: string): Promise; currentSelected(): Promise; }