import type { FontFormat } from './get-font-format'; export type LoadFontOptions = { family: string; url: string; ascentOverride?: string; descentOverride?: string; display?: 'auto' | 'block' | 'fallback' | 'optional' | 'swap'; featureSettings?: string; lineGapOverride?: string; stretch?: string; style?: string; unicodeRange?: string; variant?: string; weight?: string; format?: FontFormat; }; export declare const loadFont: (options: LoadFontOptions) => Promise;