import '@ui5/webcomponents/dist/CalendarDate.js';
import type { CommonProps, Ui5DomRef } from '@ui5/webcomponents-react-base';
interface CalendarDateAttributes {
    /**
     * The date formatted according to the `formatPattern` property
     * of the `Calendar` that hosts the component.
     */
    value?: string;
}
interface CalendarDateDomRef extends Required<CalendarDateAttributes>, Ui5DomRef {
}
interface CalendarDatePropTypes extends CalendarDateAttributes, Omit<CommonProps, keyof CalendarDateAttributes> {
}
/**
 * The `CalendarDate` component defines a calendar date to be used inside `Calendar`
 *
 * __Note:__ This is a UI5 Web Component! [CalendarDate UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/CalendarDate) | [Repository](https://github.com/UI5/webcomponents)
 * @abstract
 */
declare const CalendarDate: import("react").ForwardRefExoticComponent<CalendarDatePropTypes & import("@ui5/webcomponents-react-base").WithWebComponentPropTypes & import("react").RefAttributes<CalendarDateDomRef>>;
export { CalendarDate };
export type { CalendarDateDomRef, CalendarDatePropTypes };
