/// import { DateBodyPassProps, DateRender } from './DateBody'; import { PanelSharedProps } from '../../interface'; import { KeyboardConfig } from '../../utils/uiUtil'; export interface DatePanelProps extends PanelSharedProps, DateBodyPassProps { active?: boolean; dateRender?: DateRender; panelName?: string; keyboardConfig?: KeyboardConfig; } declare function DatePanel(props: DatePanelProps): JSX.Element; export default DatePanel;