/**
 * Font utils for Components.
 *
 * @internal
 * @internal
 */
import type Font from "../../symbols/Font.js";
import type { FontProperties } from "../../symbols/Font.js";

/**
 * loads the FontFace associated with a specific
 * font family, style, and weight.
 *
 * @param font
 * @internal
 * @internal
 */
export function loadFont(font: Pick<Font, "family"> & FontProperties): Promise<FontFace>;