import '@ui5/webcomponents/dist/CalendarDateRange.js';
import type { CommonProps, Ui5DomRef } from '@ui5/webcomponents-react-base';
interface CalendarDateRangeAttributes {
    /**
     * End of date range formatted according to the `formatPattern` property
     * of the `Calendar` that hosts the component.
     */
    endValue?: string;
    /**
     * Start of date range formatted according to the `formatPattern` property
     * of the `Calendar` that hosts the component.
     */
    startValue?: string;
}
interface CalendarDateRangeDomRef extends Required<CalendarDateRangeAttributes>, Ui5DomRef {
}
interface CalendarDateRangePropTypes extends CalendarDateRangeAttributes, Omit<CommonProps, keyof CalendarDateRangeAttributes> {
}
/**
 * The `CalendarDateRange` component defines a range of dates to be used inside `Calendar`
 *
 * __Note:__ This is a UI5 Web Component! [CalendarDateRange UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/CalendarDateRange) | [Repository](https://github.com/UI5/webcomponents)
 *
 * @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__.
 * @abstract
 */
declare const CalendarDateRange: import("react").ForwardRefExoticComponent<CalendarDateRangePropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<CalendarDateRangeDomRef>>;
export { CalendarDateRange };
export type { CalendarDateRangeDomRef, CalendarDateRangePropTypes };
