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