11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import type { DatePickerProps } from 'antd';
|
|
import React from 'react';
|
|
import type { ProFormFieldItemProps } from '../../typing';
|
|
/**
|
|
* 时间日期选择组件
|
|
*
|
|
* @param
|
|
*/
|
|
declare const ProFormDateTimePicker: React.FC<ProFormFieldItemProps<DatePickerProps>>;
|
|
export default ProFormDateTimePicker;
|