import { type ReactNode } from 'react'; type CanvasProps = { children?: ReactNode; width: number; height: number; }; export type CanvasRef = Partial & { customSetStyle: (key: string, value: string) => void; }; export declare const Canvas: import("react").MemoExoticComponent<(props: CanvasProps & import("react").RefAttributes) => import("react").ReactElement | null>; export {};