import type { FontData, FontFile } from "./types.js"; /** * Generate @font-face CSS declarations for a font */ export declare function generateFontFaceCSS(fontData: FontData): string; /** * Generate CSS class for the font */ export declare function generateFontClassName(family: string, variable?: string): string; /** * Generate CSS variable declaration */ export declare function generateCSSVariable(variable: string, family: string, fallback?: string[]): string; /** * Generate complete CSS including class and variable */ export declare function generateCompleteCSS(fontData: FontData): string; /** * Generate preload link tags for fonts */ export declare function generatePreloadLinks(files: FontFile[]): string; //# sourceMappingURL=css-generator.d.ts.map