import React from 'react';
import { type BaseRangePickerProps } from '../BaseRangePicker.types';
/**
* Popover component for BaseRangePicker.
*
* Renders two consecutive months and a footer for date range selection.
* All selection and preview state is managed via BaseRangePickerProvider context.
*
* @internal
*
* @param wrapperProps - Optional HTML div attributes to apply to the root element (e.g., className, data attributes).
*
* @remarks
* - Accessibility is handled by subcomponents (calendars and footer).
* - This component should not be used outside a BaseRangePickerProvider.
*
* @example
*
*
*
*/
export declare function BaseRangePickerPopover({ wrapperProps, calendarLocale, }: {
wrapperProps?: React.HTMLAttributes;
calendarLocale: BaseRangePickerProps['calendarLocale'];
}): import("react/jsx-runtime").JSX.Element;