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