import React from 'react'; import { TimePickerProps } from 'antd'; import { BizFormItemProps } from './Item'; export interface BizFormItemTimeProps extends BizFormItemProps, Pick { format?: string; timePickerProps?: Omit & { format?: string; }; } declare const BizFormItemTime: React.FC; export default BizFormItemTime;