import type { DisplayObjectConfig } from '@antv/g'; import type { Point } from '../../types'; import type { PolygonStyleProps } from '../shapes'; import { Polygon } from '../shapes/polygon'; /** * 菱形节点样式配置项 * * Diamond node style props */ export interface DiamondStyleProps extends PolygonStyleProps { } /** * 菱形节点 * * Diamond node */ export declare class Diamond extends Polygon { constructor(options: DisplayObjectConfig); protected getPoints(attributes: Required): Point[]; }