import { Target } from "@ember/test-helpers"; //#region src/test-support/listbox.d.ts type Selectors$2 = { trigger: string; list: string; option: string; }; declare function testListKeyboardNavigation(assert: Assert, selectors?: Partial): Promise; declare function testListKeyboardSelection(assert: Assert, selectors?: Partial): Promise; declare function testListPointerNavigation(assert: Assert, selectors?: Partial): Promise; declare function testListPointerSelection(assert: Assert, selectors?: Partial): Promise; declare function selectListbox(target: Target, options: string | string[], keepPreviouslySelected?: boolean): Promise; //#endregion //#region src/test-support/menu.d.ts type Selectors$1 = { trigger: string; menu: string; item: string; }; declare function testMenuKeyboardNavigation(assert: Assert, selectors?: Partial): Promise; declare function testMenuPointerNavigation(assert: Assert, selectors?: Partial): Promise; //#endregion //#region src/test-support/tablist.d.ts type Selectors = { tablist: string; item: string; }; declare function testTablistKeyboardNavigation(assert: Assert, selectors?: Partial): Promise; declare function testTablistKeyboardAutomaticSelection(assert: Assert, selectors?: Partial): Promise; declare function testTablistKeyboardManualSelection(assert: Assert, selectors?: Partial): Promise; declare function testTablistPointerNavigation(assert: Assert, selectors?: Partial): Promise; declare function testTablistPointerSelection(assert: Assert, selectors?: Partial): Promise; declare function selectTab(target: Target, options?: Record): Promise; //#endregion export { selectListbox, selectTab, testListKeyboardNavigation, testListKeyboardSelection, testListPointerNavigation, testListPointerSelection, testMenuKeyboardNavigation, testMenuPointerNavigation, testTablistKeyboardAutomaticSelection, testTablistKeyboardManualSelection, testTablistKeyboardNavigation, testTablistPointerNavigation, testTablistPointerSelection };