import React from 'react'; export type CanvasProps = { className?: string; style?: React.CSSProperties; children?: React.ReactNode; /** Optional background component rendered behind content (e.g., ). */ background?: React.ReactNode; /** Optional CSS background styling for the built-in background layer. */ backgroundStyle?: React.CSSProperties; /** * tabIndex applied to the Canvas root to enable keyboard navigation. * Defaults to 0 (focusable). */ tabIndex?: number; }; export declare const Canvas: React.ForwardRefExoticComponent>;