/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * @hidden */ export interface KendoTouch { onTouchStart?: (args: KendoTouchEvent) => void; onTouchMove?: (args: KendoTouchEvent) => void; onTouchEnd?: (args: KendoTouchEvent) => void; onTouchCancel?: (args: KendoTouchEvent) => void; } /** * @hidden */ export interface KendoTouchEvent { syntheticEvent: React.TouchEvent; target: T; }