import React from 'react'; import { PanGesture } from 'react-native-gesture-handler'; import type { CanvasProps } from '@shopify/react-native-skia'; type TouchableCanvasProps = CanvasProps & { panGesture?: PanGesture; timeoutBeforeCollectingRefs?: number; }; declare const Canvas: React.FC; export { Canvas }; //# sourceMappingURL=canvas.d.ts.map