import type { GenerateCssByGeneratorOptions } from './types.js';
export interface ValidateCandidatesByGeneratorOptions extends Omit<GenerateCssByGeneratorOptions, 'runtime'> {
    candidates: Set<string>;
    generatedCssSources?: Iterable<string> | undefined;
    skipGenerateFallback?: boolean | undefined;
}
export declare function validateCandidatesByGenerator(options: ValidateCandidatesByGeneratorOptions): Promise<Set<string>>;
