import React from 'react'; import './style/index.less'; export interface basePanelProps { prefixCls?: string; dateData: Date; infinite?: boolean; selectDateArr?: Array; } export declare type PanelProps = React.HTMLProps & basePanelProps; declare const Panel: React.FC; export default Panel;