import type { LiveComponent } from '@use-gpu/live'; import { SDFGlyphData, Alignment } from './types.d.mts'; export type GlyphSourceProps = { family?: string; weight?: string | number; style?: string; strings: string[] | string; lineHeight?: number; align?: Alignment; wrap?: number; hint?: 'x' | 'y' | 'xy' | false; size?: number; monochrome?: boolean; render?: (data: SDFGlyphData) => void; }; export declare const GlyphSource: LiveComponent;