export default function measureParagraph(paragraph: string, font: string, fontSize: number, fontWeight: number, limits: { width: number; height: number; }): { width: number; height: number; lines: { words: string[]; height: number; width: number; }[]; };