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