import type { LiveComponent, LiveElement } from '@use-gpu/live'; import type { LazyFontSource } from '@use-gpu/glyph'; export type FontSource = { family: string; weight: string | number; style: string; src?: string; lazy?: LazyFontSource; }; export type FontLoaderProps = { fonts?: FontSource[]; children?: LiveElement; }; export declare const FontLoader: LiveComponent;