import { type UserEvent } from '@testing-library/user-event'; import { type BaseRangePickerProps } from '../../BaseRangePicker.types'; export type BaseRangePickerPopoverTestUtilityConfig = { user: UserEvent; calendarLocale: BaseRangePickerProps['calendarLocale']; }; export declare function createBaseRangePickerPopoverTestUtility({ user, calendarLocale, }: BaseRangePickerPopoverTestUtilityConfig): { getPreviousMonthButton: () => HTMLElement; getNextMonthButton: () => HTMLElement; getApplyButton: () => HTMLElement; getCancelButton: () => HTMLElement; getDateCellByText: (text: string) => HTMLElement | undefined; getSelectedDateCells: () => HTMLElement[]; getInRangeDateCells: () => HTMLElement[]; getLeftMonthLabel: () => string | undefined; clickPreviousMonth: () => Promise; clickNextMonth: () => Promise; clickApply: () => Promise; selectDate: (dateText: string) => Promise; };