import type { DisplayObject } from '../../../shapes'; import { AxisStyleProps, RotateOverlapCfg } from '../types'; export type Utils = { rotate: (label: DisplayObject, rotate: number | string) => void; }; export default function rotateLabels(labels: DisplayObject[], overlapCfg: RotateOverlapCfg, attr: AxisStyleProps, utils: Utils): void;