/// export interface CanvasStageDragOptions { /** * Whether the stage should be panned when the background is dragged. */ panOnDrag?: boolean; } export interface CanvasStageProps { width?: number | "auto"; height?: number | "auto"; backgroundColor?: string; containerStyles?: React.CSSProperties; draggable?: boolean; backgroundDraggable?: boolean; children?: React.ReactNode; } export declare function CanvasStage(passedProps: CanvasStageProps): JSX.Element; //# sourceMappingURL=CanvasStage.d.ts.map