/**
 * Polygon box for certain series like `venn` and `wordcloud`.
 */
export interface PolygonBoxObject {
    /**
     * The bottom position of the polygon box.
     */
    bottom: number;
    /**
     * The left position of the polygon box.
     */
    left: number;
    /**
     * The right position of the polygon box.
     */
    right: number;
    /**
     * The top position of the polygon box.
     */
    top: number;
}
export default PolygonBoxObject;
