/// import type { CommonFormPropsType } from '../../types'; import './style'; /** * 年月日时分秒日期选择器 */ export default function AllTimePicker({ startDate, endDate, defaultDate, title, onAllTimeCallback, }: PropsType): JSX.Element; export interface PropsType extends CommonFormPropsType { title?: string; startDate?: string; endDate?: string; defaultDate?: string; onAllTimeCallback: (val: string[]) => void; }