import { type SugarElement } from '@ephox/sugar'; import { Chain } from './Chain'; import { Step } from './Step'; declare const touchStart: (element: SugarElement) => void; declare const touchStartAt: (element: SugarElement, dx: number, dy: number) => void; declare const touchEnd: (element: SugarElement) => void; declare const touchEndAt: (element: SugarElement, dx: number, dy: number) => void; declare const touchMove: (element: SugarElement) => void; declare const touchMoveTo: (element: SugarElement, dx: number, dy: number) => void; declare const trueTap: (elem: SugarElement) => void; declare const tap: (elem: SugarElement) => void; declare const sTap: (element: SugarElement) => Step; declare const sTrueTapOn: (container: SugarElement, selector: string) => Step; declare const sTapOn: (container: SugarElement, selector: string) => Step; declare const cTapOn: (selector: string) => Chain, SugarElement>; declare const cTouchStartAt: (dx: number, dy: number) => Chain, SugarElement>; declare const cTouchEndAt: (dx: number, dy: number) => Chain, SugarElement>; declare const cTouchMoveTo: (dx: number, dy: number) => Chain, SugarElement>; declare const point: (type: string, element: SugarElement, x: number, y: number) => void; declare const cTrueTap: Chain, SugarElement>; declare const cTap: Chain, SugarElement>; declare const cTouchMove: Chain, SugarElement>; declare const cTouchStart: Chain, SugarElement>; declare const cTouchEnd: Chain, SugarElement>; export { point, tap, trueTap, touchStart, touchStartAt, touchEnd, touchEndAt, touchMove, touchMoveTo, sTap, sTapOn, sTrueTapOn, cTap, cTapOn, cTrueTap, cTouchStart, cTouchStartAt, cTouchMove, cTouchMoveTo, cTouchEnd, cTouchEndAt }; //# sourceMappingURL=Touch.d.ts.map