import type { Component, Props } from './types';
declare const componentID = "-ui-calendar";
declare const Calendar: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
    theme: Props["theme"];
    strings: {
        months: [string, string, string, string, string, string, string, string, string, string, string, string];
        weekDays: [string, string, string, string, string, string, string];
    };
    monthsBefore: Props["monthsBefore"];
    monthsAfter: Props["monthsAfter"];
    fixedHeight: Props["fixedHeight"];
    triggerOnlyWhenFinished: Props["triggerOnlyWhenFinished"];
}>>;
export default Calendar;
export { componentID };
export type { Component, Props };
