siegel
Version:
Web application development ecosystem
17 lines (16 loc) • 698 B
TypeScript
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 };