import { type LightBoardProps } from '../LightBoard/LightBoard'; export type LightBoardSketchpadProps = Omit & { disableDrawing?: boolean; text?: string; }; export declare const LightBoardSketchpad: ({ ariaLabel, controlledHoverState, disableDrawing, size, text, ...props }: LightBoardSketchpadProps) => import("react/jsx-runtime").JSX.Element;