import { FC } from 'react'; import { DateInputValueProps, DateValue } from 'web-platform-alpha'; import { CalendarBaseProps } from './types'; export declare type CalendarProps = CalendarBaseProps & DateInputValueProps; export declare const Calendar: FC;