UNPKG

pick-datetime-react

Version:
8 lines (7 loc) 339 B
import { FC } from 'react'; import { FormItemProps } from '../types'; declare type PickerWithInputProps = { onChange?: (value: Date) => void; } & Omit<FormItemProps, 'value' | 'type' | 'className' | 'messageType' | 'readOnly' | 'onChange' | 'onFocus'>; export declare const PickerWithInput: FC<PickerWithInputProps>; export {};