import Font from './Font.js'; import type { FontFamily, FontStyle, FontWeight } from '#build/types/booster'; import type { DirectiveGetFontOptions, PreparedFontOption } from './../../module.js'; export default class FontList { list: PreparedFontOption[]; constructor(list?: PreparedFontOption[]); getFont(family: FontFamily, weight?: FontWeight, style?: FontStyle, options?: DirectiveGetFontOptions): Font; }