import { Builder } from "./builder.js"; export declare class CSSClump { project_dir: string; name: string; files: string[]; constructor(project_dir: string, name: string); addFile(full_path: string): void; build(): Promise; getEntrypointPath(): string; makeEntrypoint(): Promise; static assignFileToClumps(file_path: string): string[]; static findCSSClumps(project_dir: string, style_dirs: string[]): Promise; } export declare class CSSBuilder extends Builder { getName(): string; ownsFile(file_path: string): boolean; dispose(): Promise; _build(): Promise; }