/** * 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. */ export default function ({ oldValue, range, event, separator, incrementNext, circular, propagate, hours24, meridiem, }: { oldValue: any; range: any; event: any; separator?: string | undefined; incrementNext: any; circular: any; propagate: any; hours24: any; meridiem: any; }): { value: any; update: boolean; caretPos: any; } | { value: any; update: boolean; caretPos?: undefined; } | { value: any; };