/** * @file useWeekPanel 获取周面板 */ import { IWeekPanelViewData, IWeekPanelViewItem } from '@co-hooks/date'; export interface IWeekPanelView extends IWeekPanelViewData { setCurrentWeek: (week: IWeekPanelViewItem) => void; setCurrentWeekVirtual: (week: IWeekPanelViewItem) => void; prevYear: () => void; nextYear: () => void; prevMonth: () => void; nextMonth: () => void; changeToYear: () => void; changeToMonth: () => void; } export declare function useWeekView(part: string): IWeekPanelView;