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