import React, { ReactNode } from 'react'; import '@vonage/vwc-calendar'; /** * @param {Date | undefined} datetime * @param {string | string[] | undefined} locales * @param {(e: Event) => CalendarEventContext | null} getEventContext * @param {boolean | undefined} stickyHeader */ declare const VwcCalendar: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; datetime?: any; locales?: any; getEventContext?: any; stickyHeader?: any; }) => JSX.Element; export default VwcCalendar;