/** * @file useMonthPanel 获取月面板 */ import { IMonthPanelViewData, IMonthPanelViewItem } from '@co-hooks/date'; export interface IMonthPanelView extends IMonthPanelViewData { setCurrentMonth: (month: IMonthPanelViewItem) => void; setCurrentMonthVirtual: (month: IMonthPanelViewItem) => void; prevYear: () => void; nextYear: () => void; changeToYear: () => void; } export declare function useMonthView(part: string): IMonthPanelView;