import * as React from 'react'; import type { CellRender, PanelSharedProps } from '../../interface'; import type { KeyboardConfig } from '../../utils/uiUtil'; import type { DateBodyPassProps } from './DateBody'; export type DatePanelProps = { active?: boolean; cellRender?: CellRender; panelName?: string; keyboardConfig?: KeyboardConfig; } & PanelSharedProps & DateBodyPassProps; declare function DatePanel(props: DatePanelProps): React.JSX.Element; export default DatePanel;