import type { Mock } from "vitest"; import type { SelectOption } from "../SelectOption"; export declare function getSharedSelectInteractions(label: string, onChange: Mock): { shouldBeInDocument: () => void; shouldHaveLabel: (labelText: string) => void; shouldHavePlaceholder: (placeholder: string) => void; shouldHaveDescription: (description: string) => void; shouldHaveError: (error: string) => void; shouldNotHaveError: (error: string) => void; shouldHaveRetryButton: () => void; shouldNotHaveRetryButton: () => void; shouldBeDisabled: () => void; shouldBeReadOnly: () => void; shouldHaveFocus: () => void; shouldHaveRequiredMarker: () => void; shouldHaveOptionalMarker: () => void; shouldHaveDefaultMarker: () => void; shouldHaveAriaInvalid: (invalid: boolean) => void; shouldHaveAriaRequired: (required: boolean) => void; shouldHaveAriaDescribedByError: () => void; shouldHaveAriaDescribedByDescription: () => void; shouldHaveAriaDescribedByBoth: () => void; shouldHaveAriaActiveDescendantForOption: (optionLabel: string) => void; shouldNotHaveAriaActiveDescendant: () => void; tab: () => Promise; click: () => Promise; clickRetryButton: () => Promise; clickRefreshButton: () => Promise; shouldShowRefreshButton: () => void; shouldNotShowRefreshButton: () => void; refreshButtonShouldBeEnabled: () => void; refreshButtonShouldHaveFocus: () => void; pressEnter: () => Promise; pressSpace: () => Promise; pressArrowDown: () => Promise; pressArrowUp: () => Promise; pressHome: () => Promise; pressEnd: () => Promise; pressEscape: () => Promise; selectOption: (optionLabel: string) => Promise; shouldShowDropdown: () => void; shouldNotShowDropdown: () => void; shouldShowAllOptions: (options: SelectOption[]) => void; shouldShowAllOptionsInOrder: (options: SelectOption[]) => void; shouldHaveOptionFocused: (optionLabel: string) => void; shouldHaveOptionActive: (optionLabel: string) => void; shouldNotHaveCalledOnChange: () => void; shouldShowLoadingIndicator: () => void; shouldNotShowLoadingIndicator: () => void; triggerScrollForLoadMore: () => Promise; shouldShowClearButton: () => void; shouldNotShowClearButton: () => void; clickClearButton: () => Promise; shouldShowSearchInput: () => void; shouldNotShowSearchInput: () => void; typeInSearchInput: (text: string) => Promise; shouldShowOnlyOption: (optionLabel: string) => void; shouldShowNoResultsMessage: () => void; shouldNotShowAnyOptions: () => void; shouldHaveSearchInputWithAriaLabel: (ariaLabel: string) => void; };