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