import { type ReactNode } from 'react'; type CanvasProps = { children?: ReactNode; width: number; height: number; }; export declare const Canvas: import("react").MemoExoticComponent<({ children, ...props }: CanvasProps) => import("react/jsx-runtime.js").JSX.Element>; export {};