import { type SugarElement } from '@ephox/sugar'; declare const point: (type: string, element: SugarElement, x: number, y: number) => void; declare const touchstart: (element: SugarElement) => void; declare const touchstartAt: (dx: number, dy: number) => (element: SugarElement) => void; declare const touchend: (element: SugarElement) => void; declare const touchendAt: (dx: number, dy: number) => (element: SugarElement) => void; declare const touchmove: (element: SugarElement) => void; declare const touchmoveTo: (dx: number, dy: number) => (element: SugarElement) => void; export { touchstart, touchstartAt, touchend, touchendAt, touchmove, touchmoveTo, point }; //# sourceMappingURL=Touches.d.ts.map