import React, { CSSProperties } from 'react'; type Props = { width: number; height: number; style?: CSSProperties; className?: string; }; export type CanvasRef = { ctx?: CanvasRenderingContext2D; }; declare const Canvas: React.ForwardRefExoticComponent>; export default Canvas;