import React from 'react'; import { type SelectionSegment } from './MaskedInput'; export type { SelectionSegment } from './MaskedInput'; type TimeInputProps = { allowValueWrapping?: boolean; className?: string; onChange?: (timeInSec: number) => void; onSelect?: (selection: SelectionSegment) => void; value?: number; onFocus?: () => void; onBlur?: () => void; 'data-testid'?: string; }; export type TimeInputElement = { focus: () => void; setSelection: (newSelection: SelectionSegment) => void; }; declare const TimeInput: React.ForwardRefExoticComponent>; export default TimeInput; //# sourceMappingURL=TimeInput.d.ts.map