/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// import Component from '../../../react-class'; import getSelectionStart from './getSelectionStart'; import getSelectionEnd from './getSelectionEnd'; import setCaretPosition from './setCaretPosition'; import getNewValue from './getNewValue'; import toTimeValue from './toTimeValue'; export { getSelectionStart, getSelectionEnd, getNewValue, setCaretPosition, toTimeValue, }; export default class TimeInput extends Component { constructor(props: any); render(): JSX.Element; onKeyDown(event: any): void; getInput(): any; setCaretPosition(pos: any): void; setValue(value: any, callback: any): void; componentDidUpdate(): void; getSelectedRange(): { start: any; end: any; }; getSelectedValue(): any; onTimeChange(value: any): void; renderClock(): JSX.Element; }