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