/** * Provider-neutral CSS candidate extraction from source files. * * Extracts class name candidates from source code for Tailwind CSS compilation. * * @module html/styles-builder/candidate-extractor */ import type { StyleScopeProfile } from "./style-scope-profile.js"; export { extractCandidates } from "./candidate-tokenizer.js"; export { hashCandidates, hashCSS, hashString } from "./css-identity.js"; export declare function extractCandidatesFromFiles(files: readonly { path: string; content?: string; }[], options?: { projectDir?: string; styleProfile?: StyleScopeProfile; }): Set; //# sourceMappingURL=candidate-extractor.d.ts.map