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