/// import type { Props as DatesViewProps } from './DatesView'; /** * 组件属性 */ interface Props extends DatesViewProps { /** * 最小日期 */ minDate?: Date; /** * 最大日期 */ maxDate?: Date; /** * 是否展示今天 */ showToday?: boolean; /** * 指定的选中日期 */ value?: Date | (Date | undefined)[]; /** * 指定年份 */ year: number; /** * 指定月份 */ month: number; } /** * 获取不可用日期 * * @param year 年 * @param month 月 * @param minDate 最小日期 * @param maxDate 最大日期 */ export declare function getDisabledDates(year: number, month: number, minDate?: Date, maxDate?: Date): number[] | undefined; /** * 简单的一个月中的日期视图组件 * * @param props 组件属性 */ declare const SimpleMonthDatesView: React.FC; export default SimpleMonthDatesView;