import React, { ReactNode } from 'react'; import '@vonage/vwc-calendar'; import '@vonage/vwc-calendar/vwc-calendar-event'; /** * @param {string | undefined} heading * @param {string | undefined} description * @param {string | undefined} color * @param {string | undefined} overlapCount * @param {number} start * @param {number} duration */ declare const VwcCalendarEvent: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; heading?: string | undefined; description?: string | undefined; color?: string | undefined; overlapCount?: string | undefined; start?: number | undefined; duration?: number | undefined; }) => JSX.Element; export default VwcCalendarEvent;