import type { CellRender, PanelSharedProps } from '../../interface'; export type WeekPanelProps = { cellRender?: CellRender; } & PanelSharedProps; declare function WeekPanel(props: WeekPanelProps): import("react/jsx-runtime").JSX.Element; export default WeekPanel;