/**
 * Represents options for configuring shapes.
 */
export interface IShapeOptions {
    /**
     * Determines if the shape should be visible or not.
     */
    visible?: boolean;
    /**
     * Determines if the shape can be dragged by mouse.
     */
    draggable?: boolean;
}
