import type { RuntimeContext } from '../runtime/types'; import type { BaseTransformOptions } from './base-transform'; import { BaseTransform } from './base-transform'; /** * 根据径向布局自动调整节点标签样式的配置项 * * Options for automatically adjusting the style of node labels according to the radial layout */ export interface PlaceRadialLabelsOptions extends BaseTransformOptions { /** * 偏移量 * * Offset */ offset?: number; } /** * 根据径向布局自动调整节点标签样式,包括位置和旋转角度 * * Automatically adjust the style of node labels according to the radial layout, including position and rotation angle */ export declare class PlaceRadialLabels extends BaseTransform { static defaultOptions: Partial; constructor(context: RuntimeContext, options: PlaceRadialLabelsOptions); private get ref(); afterLayout(): void; }