import { ColorSet } from './color-set/index.js'; import { BuiltInColorSet } from './color-set/all.js'; import type { Template, OutputFile, RenderOptions } from './template/index.js'; import { BuiltInTemplate } from './template/all.js'; import { OutputFileTransform } from './transform/index.js'; export declare function themer(colorSets: (BuiltInColorSet | ColorSet)[], templates: (BuiltInTemplate | Template)[], options: RenderOptions, transform?: OutputFileTransform): AsyncGenerator;