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