import type { SumiFont } from '../types.js'; export declare function parseFont(source: string, name?: string): SumiFont; export declare function loadFontFromURL(url: string | URL, options?: { readonly fetch?: typeof globalThis.fetch; readonly name?: string; }): Promise;