import type React from 'react'; /** * 日历视图的工具栏组件属性 */ interface Props { /** * 标题 */ title: string; /** * 需要显示的子元素 */ children?: React.ReactNode; } /** * 日历视图的工具栏 * * @param props 组件属性 * @param props.title 标题 * @param props.children 需要在工具栏上显示的内容 */ declare const CalendarViewToolbar: React.FC; export default CalendarViewToolbar;