import { Font } from 'src/hooks/useFetch'; export declare const getDisplayName: (fontFamily: string) => string; interface FontResult extends Font { scaleFactor: number; } /** * Scale font up or down based on the text area. We currently use em for line * height so it will scale with the font size. */ export declare const getScaledFont: (font: Font, textAreaWidth: number) => FontResult; export {};