import type React from 'react'; /** * 组件属性 */ interface Props { /** * 组件样式 */ style?: React.CSSProperties; /** * 组件样式类 */ className?: string; /** * 已经选择的月份 */ selectedMonth?: number; /** * 选择月份的回调函数 */ onMonthSelect?: (month: number) => void; /** * 是否是 PC 模式 */ isPc?: boolean; /** * 最小可选月份 */ minMonth?: number; /** * 最大可选月份 */ maxMonth?: number; } /** * 选择月的视图 * * @param pros 组建属性 * @param pros.selectedMonth 已经选择的月份 * @param pros.onMonthSelect 选择月份的回调函数 * @param pros.className 组件样式类 * @param pros.isPc 是否是 PC 模式 * @param pros.minMonth 最小可选月份 * @param pros.maxMonth 最大可选月份 */ declare const MonthSelectView: ({ selectedMonth, onMonthSelect, className, isPc, minMonth, maxMonth, ...rest }: Props) => JSX.Element; export default MonthSelectView;