/** * Load a Google Font into the document. Idempotent — calling twice with the * same arguments injects only one ``. * * @example * useGoogleFont('Lexend', { weights: [400, 500, 700] }); * useGoogleFont('JetBrains Mono'); */ export interface UseGoogleFontOptions { /** Font weights to load. Defaults to `[400]`. */ weights?: number[]; /** `font-display` strategy. Defaults to `'swap'`. */ display?: 'auto' | 'block' | 'swap' | 'fallback' | 'optional'; /** Whether to load italic variants alongside the upright weights. */ italic?: boolean; } export declare function useGoogleFont(name: string, options?: UseGoogleFontOptions): void; //# sourceMappingURL=use-google-font.d.ts.map