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