/** Bounded, dependency-free CSS candidate tokenization. */ export interface ExtractedCSSCandidates { readonly candidates: string[]; readonly sourceBytes: number; } /** Extract a bounded, deduplicated candidate snapshot and admitted byte count. */ export declare function extractCandidatesWithByteLength(content: string, label?: string): ExtractedCSSCandidates; export declare function extractCandidates(content: string): string[]; //# sourceMappingURL=candidate-tokenizer.d.ts.map