import * as React from 'react'; import type { CommonPropsType } from '../../types'; import '../style'; export interface PropsType extends CommonPropsType { start: string; end: string; defaultValue: string; title: string; children?: React.ReactNode | undefined; } export default function DatePicker(props: PropsType): JSX.Element;