import { IShapeStyle } from "./IShapeStyle.js";
import { IRectangleBaseStyle } from "./IRectangleBaseStyle.js";
/**
 * Represents the style options for a rectangle including the states.
 */
export interface IRectangleStyle extends IRectangleBaseStyle, IShapeStyle {
}
