/** * ✘ type * ✘ canvas-id * ✘ disable-scroll * ✔ bindtouchstart * ✔ bindtouchmove * ✔ bindtouchend * ✔ bindtouchcancel * ✔ bindlongtap * ✔ binderror */ import { TouchEvent } from 'react'; import { View, NativeSyntheticEvent } from 'react-native'; import { HandlerRef } from '../useNodesRef'; import './CanvasGradient'; interface CanvasProps { style?: Record; originWhitelist?: Array; 'enable-var'?: boolean; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; 'external-var-context'?: Record; bindtouchstart?: (event: NativeSyntheticEvent) => void; bindtouchmove?: (event: NativeSyntheticEvent) => void; bindtouchend?: (event: NativeSyntheticEvent) => void; bindtouchcancel?: (event: NativeSyntheticEvent) => void; bindlongtap?: (event: NativeSyntheticEvent) => void; binderror?: (event: NativeSyntheticEvent) => void; } declare const _Canvas: import("react").ForwardRefExoticComponent>>; export default _Canvas;