import type React from 'react'; export interface CanvasProps { readonly dataset?: DOMStringMap; id?: string; style?: React.CSSProperties; className?: string; width?: string | number; height?: string | number; disableScroll?: boolean; type?: string; onTap?: (e: any) => void; onTouchStart?: (e: any) => void; onTouchMove?: (e: any) => void; onTouchEnd?: (e: any) => void; onTouchCancel?: (e: any) => void; onLongTap?: (e: any) => void; onReady?: (e: any) => void; } export declare const Canvas: React.ComponentType;