import type { CharacterWidths } from '@shopify/polaris-viz-core'; import type { FormattedLine, PreparedLabels } from '../../../types'; interface Props { labels: PreparedLabels[]; longestLabelWidth: number; targetHeight: number; targetWidth: number; characterWidths: CharacterWidths; } export declare function getDiagonalLabels({ characterWidths, labels, longestLabelWidth, targetHeight, targetWidth, }: Props): { lines: FormattedLine[][]; containerHeight: number; }; export {}; //# sourceMappingURL=getDiagonalLabels.d.ts.map