export interface FontImport { type: "google" | "local"; family: string; options: any; file: string; line: number; } /** * Scan TypeScript files for font imports * * @param sourceRoot - The root directory to start scanning * @param projectRoot - The project root directory * @param fontFile - Optional specific font file to scan (e.g., 'src/fonts.ts') * If not provided, will look for common font file names */ export declare function scanForFontImports(sourceRoot: string, projectRoot: string, fontFile?: string): Promise; //# sourceMappingURL=font-scanner.d.ts.map