import { ChangeEventHandler, Component, KeyboardEventHandler } from 'react'; import moment from 'moment'; import type { FocusEventHandler } from 'react'; import type { RCInputProps, RCInputState } from './iRCTimePicker'; declare class Input extends Component { static defaultProps: { placeholder: string; inputReadOnly: boolean; }; constructor(props: RCInputProps); private refInput; componentDidMount(): void; componentWillReceiveProps(nextProps: RCInputProps): void; onInputChange: ChangeEventHandler; onKeyDown: KeyboardEventHandler; getProtoValue(): moment.Moment; onBlur: FocusEventHandler; getInput(): JSX.Element; render(): JSX.Element; } export default Input;