import React from 'react'; import type { TimePickerProps } from 'antd/es/time-picker'; import { ProFormOtherProps } from '../../../propsType'; import './style/index.less'; export interface Props { valueType?: string; format?: string; onChange?: (value: string) => void; value?: string; otherProps?: ProFormOtherProps; isView?: boolean; } declare const TimePicker: React.FC; export default TimePicker;